pomf-rehost/manifest.json

40 lines
616 B
JSON
Raw Permalink Normal View History

2016-01-18 05:12:37 +01:00
{
"manifest_version": 2,
"name": "pomf-rehost",
"description": "This extension rehosts an image by uploading it to a Pomf-based file hosting service",
"version": "1.0",
"icons":{ "128": "icon_128.png"},
2016-06-07 06:28:00 +02:00
"options_ui" : {
"page": "options.html",
"chrome_style": true
},
2016-01-18 05:12:37 +01:00
"background": {
2016-06-07 06:28:00 +02:00
"scripts": ["background.js"]
2016-01-18 05:12:37 +01:00
},
"page_action": {
"default_icon": "icon_19.png"
},
"permissions": [
"activeTab",
"tabs",
"storage",
"http://*/*",
"https://*/*",
2016-05-05 16:20:50 +02:00
"bookmarks",
"webRequest",
"webRequestBlocking"
],
"applications": {
"gecko": {
"id": "pomf-rehost@lesderid.net"
}
}
2016-01-18 05:12:37 +01:00
}