URL SAVER

URL SAVER

This extension saves the pages where you at

Additional files are visible only to premium users

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"
  ]
}