Linky.link

Linky.link

This extension will create linky.link links for you.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Linky.link",
  "description": "This extension will create linky.link links for you.",
  "version": "3.1",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/linky16x16.png",
    "48": "icons/linky48x48.png",
    "128": "icons/linky128x128.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "linky-style.css"
      ],
      "js": [
        "login.js",
        "autoOpener.js",
        "mycontent.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "*.png"
  ]
}