mirror of
https://github.com/responsively-org/responsively-app
synced 2024-11-14 08:27:12 +00:00
27 lines
585 B
JSON
27 lines
585 B
JSON
{
|
|
"name": "Responsively Helper",
|
|
"version": "0.0.2",
|
|
"description": "An extension to open current browser page in Responsively app",
|
|
"homepage_url": "https://responsively.app",
|
|
"manifest_version": 2,
|
|
"icons": {
|
|
"128": "logo_128.png",
|
|
"48": "logo_48.png",
|
|
"16": "logo_16.png"
|
|
},
|
|
"background": {
|
|
"persistent": false,
|
|
"scripts": [
|
|
"browser-polyfill.min.js",
|
|
"background.js"
|
|
]
|
|
},
|
|
"browser_action": {
|
|
"default_icon": "logo_128.png",
|
|
"default_title": "Open page in Responsively app",
|
|
"default_popup": "popup.html"
|
|
},
|
|
"permissions": [
|
|
"activeTab"
|
|
]
|
|
}
|