HyperG - Automatic Hyperlinks In Gmail

HyperG - Automatic Hyperlinks In Gmail

HyperG - Automatic Hyperlinks In Gmail

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HyperG - Automatic Hyperlinks In Gmail",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "HyperG - Automatic Hyperlinks In Gmail",
  "browser_action": {
    "default_icon": "icons/icon-128.png",
    "default_title": "HyperG - Automatic Hyperlinks In Gmail"
  },
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "128": "icons/icon-128.png"
  },
  "options_page": "ui/Rules.html",
  "web_accessible_resources": [
    "/ui/*"
  ],
  "permissions": [
    "http://*/*",
    "https://*/*",
    "tabs"
  ]
}