never-lose
Version:
This Chrome extension save all web pages you viewed to the Wayback Machine
35 lines (34 loc) • 840 B
JSON
{
"manifest_version": 2,
"name": "Never Lose",
"short_name": "Never Lose",
"description": "This extension save all web pages you viewed to the Wayback Machine",
"version": "0.3.1",
"icons": {
"16": "/images/icon-16.png",
"32": "/images/icon-32.png",
"64": "/images/icon-64.png",
"128": "/images/icon-128.png"
},
"homepage_url": "https://github.com/kissarat/never-lose/blob/master/README.md",
"options_page": "options/options.html",
"permissions": [
"<all_urls>",
"activeTab",
"tabs",
"storage",
"webNavigation",
"webRequest",
"webRequestBlocking"
],
"background": {
"scripts": ["wayback.js"]
},
"browser_action": {
"default_icon": {
"16": "/images/icon-16.png",
"32": "/images/icon-32.png"
},
"default_time": "Show it on archive.org"
}
}