40 lines
616 B
JSON
40 lines
616 B
JSON
{
|
|
"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"},
|
|
|
|
"options_ui" : {
|
|
"page": "options.html",
|
|
"chrome_style": true
|
|
},
|
|
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
|
|
"page_action": {
|
|
"default_icon": "icon_19.png"
|
|
},
|
|
|
|
"permissions": [
|
|
"activeTab",
|
|
"tabs",
|
|
"storage",
|
|
"http://*/*",
|
|
"https://*/*",
|
|
"bookmarks",
|
|
"webRequest",
|
|
"webRequestBlocking"
|
|
],
|
|
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "pomf-rehost@lesderid.net"
|
|
}
|
|
}
|
|
}
|