TinyURL

TinyURL

A one-click tool to generate a tiny URL (https://tinyurl.com) from your current URL and automatically copy it to the clipboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TinyURL",
  "short_name": "TinyURL",
  "version": "2019.9.27.22",
  "author": "Robert A Moreno II",
  "description": "A one-click tool to generate a tiny URL (https://tinyurl.com) from your current URL and automatically copy it to the clipboard.",
  "permissions": [
    "https://tinyurl.com/",
    "activeTab",
    "tabs",
    "clipboardWrite",
    "storage",
    "contextMenus"
  ],
  "icons": {
    "16": "images/tinyurl_16.png",
    "32": "images/tinyurl_32.png",
    "48": "images/tinyurl_48.png",
    "64": "images/tinyurl_64.png",
    "128": "images/tinyurl_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Create a TinyURL"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}