mirror of
https://github.com/lil-org/tokenary.git
synced 2024-11-22 21:49:51 +03:00
Update iOS extension manifest
This commit is contained in:
parent
3968f3a8c6
commit
ba6fd3f9fb
@ -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."
|
||||
}
|
||||
}
|
||||
|
@ -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" ]
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user