hearsay/manifest.json

35 lines
No EOL
735 B
JSON

{
"manifest_version": 2,
"name": "Hearsay: recommend links",
"description": "A tool for recommending links",
"version": "1.0",
"homepage_url": "https://git.bivouac.wiki/misc/hearsay",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts":[
{
"matches": ["<all_urls>"],
"js": ["borderify.js"]
}
],
"options_ui":{
"page":"options.html"
},
"browser_specific_settings":{
"gecko":{
"id": "hearsay@git.bivouac.wiki"
}
},
"permissions": [
"activeTab",
"contextMenus",
"clipboardWrite",
"storage"
]
}