This commit replaces the icon with a SVG and adds the possibility to like pages too. To do this the whole structure was rewritten which makes it in the future easier to add new functions.
18 lines
412 B
JSON
18 lines
412 B
JSON
{
|
|
"description": "Button to like and reply",
|
|
"manifest_version": 2,
|
|
"name": "Indie Reply Button",
|
|
"version": "2.0",
|
|
"icons": {
|
|
"48": "icons/icon.svg"
|
|
},
|
|
"browser_action": {
|
|
"default_icon": "icons/icon.svg",
|
|
"default_title": "IndieButton",
|
|
"default_popup": "popup.html",
|
|
"browser_style": false
|
|
},
|
|
"permissions": [
|
|
"tabs"
|
|
]
|
|
}
|