Reputation: 6694
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
Reputation: 3292
Put this string into your manifest file:
"minimum_chrome_version": "45"
All available options: Manifest file format.
Upvotes: 5