t5m.co URL Shortener

t5m.co URL Shortener

Shorten url with t5m.co URL Shortener

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "browser_action": {
    "default_title": "t5m.co URL Shortener"
  },
  "name": "t5m.co URL Shortener",
  "description": "Shorten url with t5m.co URL Shortener",
  "permissions": [
    "<all_urls>",
    "activeTab",
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage",
    "*://*/*",
    "contextMenus",
    "clipboardWrite",
    "clipboardRead",
    "notifications"
  ],
  "icons": {
    "16": "image/icon16.png",
    "48": "image/icon48.png",
    "128": "image/icon128.png"
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "jquery-1.8.3.min.js",
        "functions.js",
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "*://*/*"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "*"
  ],
  "version": "0.1.0.2",
  "manifest_version": 2
}