Examine source code of URL SAVER

Inspect and view changes in URL SAVER source codes across current and past versions
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",
  "manifest_version": 2,
  "name": "URL SAVER",
  "description": "This extension saves the pages where you at ",
  "version": "2",
  "author": "Luis Adame Rodríguez - @mrluissan",
  "homepage_url": "https://mrluissan.ninja",
  "commands": {
    "saveTab": {
      "suggested_key": {
        "default": "Ctrl+Q",
        "mac": "Command+Q"
      },
      "description": "Saves the url"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "/icons/icon.png",
    "default_popup": "index.html"
  },
  "icons": {
    "16": "/icons/icon.png",
    "32": "/icons/icon32.png",
    "48": "/icons/icon48.png",
    "64": "/icons/icon64.png",
    "128": "/icons/icon128.png"
  },
  "permissions": [
    "tabs",
    "notifications"
  ]
}