parent
ca3071514f
commit
e7d07a5729
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 2.9 KiB |
@ -1,29 +1,31 @@ |
|||||||
{ |
{ |
||||||
"applications":{ |
"manifest_version":2, |
||||||
"gecko":{ |
"author": "Ondřej Hruška", |
||||||
"id":"@save_link_to_file", |
"name":"Save Link to File", |
||||||
"strict_min_version":"64.0" |
"version":"0.3", |
||||||
} |
"description":"Saves the current page as a HTML file with auto-redirect. It's like a bookmark you can store anywhere on your disk.", |
||||||
}, |
"icons":{ |
||||||
"manifest_version":2, |
"48":"icon-dark.svg", |
||||||
"author": "Ondřej Hruška", |
"128":"icon-dark.svg" |
||||||
"name":"Save Link to File", |
}, |
||||||
"version":"0.2", |
"background":{ |
||||||
"description":"Saves the current page as a HTML file with auto-redirect. It's like a bookmark you can store anywhere on your disk.", |
"scripts":["background.js"] |
||||||
"icons":{ |
}, |
||||||
"48":"icon.svg", |
"permissions":[ |
||||||
"128":"icon.svg" |
|
||||||
}, |
|
||||||
"background":{ |
|
||||||
"scripts":["background.js"] |
|
||||||
}, |
|
||||||
"permissions":[ |
|
||||||
"activeTab", |
"activeTab", |
||||||
"downloads" |
"downloads" |
||||||
], |
], |
||||||
"browser_action": { |
"browser_action": { |
||||||
"browser_style": true, |
"default_title": "Save Link", |
||||||
"default_icon": "icon.svg", |
"default_icon": "icon-dark.svg", |
||||||
"default_title": "Save Link" |
"theme_icons": [{ |
||||||
|
"light": "icon-light.svg", |
||||||
|
"dark": "icon-dark.svg", |
||||||
|
"size": 32 |
||||||
|
},{ |
||||||
|
"light": "icon-light.svg", |
||||||
|
"dark": "icon-dark.svg", |
||||||
|
"size": 16 |
||||||
|
}] |
||||||
} |
} |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue