Linkenstein

Linkenstein

With this extension you can copy URLs with their titles. Also, it allows to get shorter versions of URLs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_AppName__",
  "version": "1.0.10",
  "description": "__MSG_AppDesc__",
  "default_locale": "en",
  "permissions": [
    "contextMenus",
    "clipboardRead",
    "clipboardWrite",
    "*://*/*"
  ],
  "background": {
    "persistent": false,
    "page": "background.html"
  },
  "content_security_policy": "script-src 'self' https://apis.google.com https://ssl.google-analytics.com; object-src 'self'",
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "icons": {
    "16": "img/imageinfo-16.png",
    "19": "img/imageinfo-19.png",
    "48": "img/imageinfo-48.png",
    "128": "img/imageinfo-128.png"
  }
}