nagy.zsolt.hun
nagy.zsolt.hun

Reputation: 6694

chrome extension - restriction on Chrome version

I use arrow functions in my chrome extension. Users with old Chrome versions (<45.0) will not be able to use it.

Is there a way to disable installation of my extension for users with old Chrome version?

Upvotes: 6

Views: 725

Answers (1)

Denis L
Denis L

Reputation: 3292

Put this string into your manifest file:

"minimum_chrome_version": "45"

All available options: Manifest file format.

Upvotes: 5

Related Questions