SmallURL

SmallURL

Smallify in a click!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SmallURL",
  "version": "2.0.3",
  "description": "Smallify in a click!",
  "author": "Xeonr Network",
  "homepage_url": "http://smallurl.in/",
  "icons": {
    "32": "icon_32.png",
    "256": "icon_256.png"
  },
  "permissions": [
    "tabs",
    "clipboardRead",
    "notifications",
    "activeTab",
    "http://smallurl.in/",
    "contextMenus",
    "http://*/*",
    "storage"
  ],
  "background": {
    "scripts": [
      "jquery.min.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "Smallify this tabs URL!",
    "default_icon": "idle.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "smallurl.css"
      ],
      "js": [
        "jquery.min.js",
        "smallurl.js"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2,
  "options_page": "options.html",
  "web_accessible_resources": [
    "notif.png",
    "smallurl.js",
    "menu_logo.png",
    "/img/small_logo.png",
    "jquery.min.map"
  ]
}