Update iOS extension manifest

This commit is contained in:
Ivan Grachyov 2021-12-11 15:59:34 +03:00
parent 3968f3a8c6
commit ba6fd3f9fb
2 changed files with 24 additions and 13 deletions

View File

@ -1,10 +1,10 @@
{
"extension_name": {
"message": "Safari iOS",
"message": "Tokenary",
"description": "The display name for the extension."
},
"extension_description": {
"message": "This is Safari iOS. You should tell us what your extension does here.",
"message": "Crypto Wallet",
"description": "Description of what the extension does."
}
}

View File

@ -1,11 +1,11 @@
{
"manifest_version": 2,
"default_locale": "en",
"name": "__MSG_extension_name__",
"description": "__MSG_extension_description__",
"version": "1.0",
"version": "2.0.0",
"icons": {
"48": "images/icon-48.png",
"96": "images/icon-96.png",
@ -13,19 +13,20 @@
"256": "images/icon-256.png",
"512": "images/icon-512.png"
},
"background": {
"scripts": [ "background.js" ],
"persistent": false
},
"content_scripts": [{
"js": [ "content.js" ],
"matches": [ "*://example.com/*" ]
"matches": [ "file://*/*", "http://*/*", "https://*/*" ],
"run_at": "document_start",
"all_frames": true,
"js": [ "content.js" ]
}],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/toolbar-icon-16.png",
"19": "images/toolbar-icon-19.png",
@ -33,6 +34,16 @@
"38": "images/toolbar-icon-38.png"
}
},
"permissions": [ ]
"permissions": [
"nativeMessaging",
"storage",
"https://*.infura.io/",
"https://*.infura.io/*",
"https://*.infura.io/*/*",
"activeTab",
"webRequest"
],
"web_accessible_resources": [ "inpage.js" ]
}