mirror of
https://github.com/lil-org/tokenary.git
synced 2024-11-26 13:34:08 +03:00
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"default_locale": "en",
|
|
|
|
"name": "__MSG_extension_name__",
|
|
"description": "__MSG_extension_description__",
|
|
"version": "2.0.31",
|
|
|
|
"icons": {
|
|
"48": "images/icon-48.png",
|
|
"96": "images/icon-96.png",
|
|
"128": "images/icon-128.png",
|
|
"256": "images/icon-256.png",
|
|
"512": "images/icon-512.png"
|
|
},
|
|
|
|
"background": {
|
|
"scripts": [ "service_worker.js" ],
|
|
"persistent": false
|
|
},
|
|
|
|
"content_scripts": [{
|
|
"matches": [ "file://*/*", "http://*/*", "https://*/*" ],
|
|
"run_at": "document_start",
|
|
"all_frames": false,
|
|
"js": [ "ios_specific_content.js", "content.js" ]
|
|
}],
|
|
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"16": "images/toolbar-icon-16.png",
|
|
"19": "images/toolbar-icon-19.png",
|
|
"32": "images/toolbar-icon-32.png",
|
|
"38": "images/toolbar-icon-38.png"
|
|
}
|
|
},
|
|
|
|
"permissions": [
|
|
"webNavigation",
|
|
"nativeMessaging",
|
|
"storage",
|
|
"activeTab",
|
|
"tabs"
|
|
],
|
|
|
|
"web_accessible_resources": [ "inpage.js" ]
|
|
}
|