Grokall URL Shortener

Grokall URL Shortener

This extension shortens an URL using the Grokall URL shortening service

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Grokall URL Shortener",
  "short_name": "URL Shortener",
  "description": "This extension shortens an URL using the Grokall URL shortening service",
  "version": "0.0.0.3",
  "content_scripts": [
    {
      "js": [
        "popup.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": {
      "19": "company_logo_19x19.png",
      "38": "company_logo_38x38.png"
    },
    "default_popup": "popup.html",
    "default_title": "Grokall URL Shortener"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "https://*/*"
  ]
}