Browser add-on that saves the current page as a HTML file with auto-redirect. It's like a bookmark you can store anywhere on your disk.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
webext_save-link-to-file/manifest.json

31 lines
718 B

{
"manifest_version":2,
"author": "Ondřej Hruška",
"name":"Save Link to File",
"version":"0.5",
"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":{
"48":"icon-dark.svg",
"128":"icon-dark.svg"
},
"background":{
"scripts":["background.js"]
},
"permissions":[
"activeTab",
"downloads"
],
"browser_action": {
"default_title": "Save Link",
"default_icon": "icon-dark.svg",
"theme_icons": [{
"light": "icon-light.svg",
"dark": "icon-dark.svg",
"size": 32
},{
"light": "icon-light.svg",
"dark": "icon-dark.svg",
"size": 16
}]
}
}