Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 344
nagy.zsolt.hun Avatar asked Oct 18 '22 07:10

nagy.zsolt.hun


1 Answers

Put this string into your manifest file:

"minimum_chrome_version": "45"

All available options: Manifest file format.

like image 55
Denis L Avatar answered Nov 15 '22 09:11

Denis L