SPRL Link Shortener

SPRL Link Shortener

Easy Link Shortener with advance tracking

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SPRL Link Shortener",
  "version": "0.4",
  "description": "Easy Link Shortener with advance tracking",
  "icons": {
    "16": "img/sprlicon16.png",
    "32": "img/sprlicon32.png",
    "64": "img/sprlicon64.png",
    "128": "img/sprlicon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery.js",
        "js/popup.js"
      ],
      "css": [
        "css/style.css"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Short Link with SPRL",
    "default_popup": "popup.html"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "js/jquery.js",
      "js/background.js"
    ]
  },
  "web_accessible_resources": [
    "css/style.css"
  ],
  "permissions": [
    "contextMenus",
    "activeTab"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-inline' https://insprl.com; object-src 'self'"
}