Save your tabs with this extension instead of leaving them open and letting them slow down your computer.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Link Memory",
"description": "Save your tabs with this extension instead of leaving them open and letting them slow down your computer.",
"version": "1.3.0",
"browser_action": {
"default_popup": "popup-view.html"
},
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"permissions": [
"activeTab",
"storage",
"unlimitedStorage",
"tabs",
"*://*/*"
],
"options_page": "options.html",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}