41 lines
942 B
JSON
41 lines
942 B
JSON
{
|
|
"name": "Web Extension for Shaarli modified",
|
|
"description": "Share your link to your Shaarli, test version",
|
|
"version": "2.0.1",
|
|
"homepage_url": "https://git.hmthsn.com/mantao/shaarli-web-extension",
|
|
"manifest_version": 2,
|
|
"icons": {
|
|
"48": "resources/icons/icon-48.png"
|
|
},
|
|
"permissions": [
|
|
"tabs",
|
|
"storage",
|
|
"contextMenus"
|
|
],
|
|
"options_ui": {
|
|
"page": "src/options/options.html"
|
|
},
|
|
"background": {
|
|
"page": "src/background-page.html"
|
|
},
|
|
"browser_action": {
|
|
"default_icon": "resources/icons/icon-24.png",
|
|
"default_title": "Share"
|
|
},
|
|
"page_action": {
|
|
"browser_style": false,
|
|
"default_icon": "resources/icons/icon-24.png",
|
|
"default_title": "Share"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://sl.hmthsn.com/login*"],
|
|
"js": ["src/login_helper.js"]
|
|
},
|
|
{
|
|
"matches": ["*://sl.hmthsn.com/*"],
|
|
"js": ["src/close_helper.js"]
|
|
}
|
|
]
|
|
}
|