Link Saver

‘Link Saver’ is an extension that is a quick and easily accessible way to save all your links in a friendly format.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Link Saver",
  "version": "1.0.5",
  "description": "‘Link Saver’ is an extension that is a quick and easily accessible way to save all your links in a friendly format.",
  "browser_action": {
    "default_popup": "recentlinks.html"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "icons/icon_16.png",
    "48": "icons/icon_48.png"
  },
  "options_page": "alllinks.html",
  "manifest_version": 2
}