mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-17 11:51:32 +03:00
39 lines
714 B
JSON
39 lines
714 B
JSON
|
{
|
||
|
"manifest_version": 2,
|
||
|
"name": "link",
|
||
|
"description": "Urbit Link",
|
||
|
"version": "0.0.0",
|
||
|
"icons": {
|
||
|
"64": "icons/icon.png"
|
||
|
},
|
||
|
"browser_action": {
|
||
|
"default_icon": {
|
||
|
"64": "icons/icon.png"
|
||
|
},
|
||
|
"todo__default_popup": "browserAction/index.html",
|
||
|
"default_title": "link"
|
||
|
},
|
||
|
"background": {
|
||
|
"scripts": [
|
||
|
"background.js",
|
||
|
"storage.js"
|
||
|
]
|
||
|
},
|
||
|
"options_ui": {
|
||
|
"page": "options/index.html"
|
||
|
},
|
||
|
"web_accessible_resources": [
|
||
|
"src/options/options.html"
|
||
|
],
|
||
|
|
||
|
"permissions": [
|
||
|
"storage", // storing config
|
||
|
"activeTab" // viewing current page url & title
|
||
|
],
|
||
|
|
||
|
"applications": {
|
||
|
"gecko": {
|
||
|
"id": "link-webext@tlon.io"
|
||
|
}
|
||
|
}
|
||
|
}
|