Golinkify

Golinkify

Get GoLinkify and start helping your teams share info faster with short memorable links.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Golinkify",
  "description": "Get GoLinkify and start helping your teams share info faster with short memorable links.",
  "version": "0.0.1",
  "manifest_version": 3,
  "permissions": [
    "tabs",
    "activeTab",
    "cookies",
    "declarativeNetRequest"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "image/icons/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "http://*/",
        "https://*/"
      ],
      "css": [
        "css/glfy_common.css"
      ],
      "js": [
        "js/lib/jQuery.js",
        "js/content/glfy_content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "16": "image/icons/GoLinkify-logo16.png",
      "32": "image/icons/GoLinkify-logo32.png",
      "48": "image/icons/GoLinkify-logo48.png",
      "128": "image/icons/GoLinkify-logo128.png"
    }
  },
  "icons": {
    "16": "image/icons/GoLinkify-logo16.png",
    "32": "image/icons/GoLinkify-logo32.png",
    "48": "image/icons/GoLinkify-logo48.png",
    "128": "image/icons/GoLinkify-logo128.png"
  },
  "input_components": [
    {
      "name": "Test IME",
      "type": "ime",
      "id": "test",
      "description": "Test IME",
      "language": "en-US",
      "layouts": [
        "us::eng"
      ]
    }
  ],
  "omnibox": {
    "keyword": "go/"
  },
  "host_permissions": [
    "<all_urls>",
    "http://*/",
    "https://*/"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}