Clear Links

Clear Links

Makes website links more transparent and accessible, enhancing your awareness of your navigational security and privacy.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Clear Links",
  "version": "3.3.0",
  "author": "Christopher Bull",
  "description": "Makes website links more transparent and accessible, enhancing your awareness of your navigational security and privacy.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "scripting",
    "storage",
    "identity",
    "webNavigation"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgv1hEzO8elR0XP9jiGtSDApjag3UXFSbH/37/kubWHJPqVbNC+WNLiW2OQpInn8eoRUMVGWUVgfJysGsXCr8cf8xRvnGrDJKRgKQB67spzCbEtfj9fqR2FQhcg4mSFPwsy/OygXEWlrzjkENcZbf53oMDGspl6cMa0r8P+rwsxLGjdxEcZ4YQTTYZ3D2BflmcjLtgBOj5vtEPyL3adxuMG6v5+lu5JWqbayJSA2oysk+L19BQuTaMnXcb/j0s50PSQUa7LnkMMggijKTAm67Mj59iggbQVYcL4zu0KLztFrCJ5Xuy60JJgWKNMETukNy448yq5jzpKWfgWvtAlEI8QIDAQAB",
  "oauth2": {
    "client_id": "183253452276-9ldchuigo09bhm1frm5ms2ll7109mgr4.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/urlshortener"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "contentScript.css",
        "contentScript.js",
        "contentScriptSharedLib.js",
        "defaultSettings.js",
        "jquery-2.2.3.min.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "options_ui": {
    "page": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScriptActivationFilter.js"
      ],
      "run_at": "document_start"
    }
  ]
}