Linkognito

Linkognito

Open links in incognito mode

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Linkognito",
  "version": "1.4",
  "description": "Open links in incognito mode",
  "icons": {
    "48": "img/icon.png",
    "96": "img/[email protected]",
    "128": "img/icon-128px.png"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "background": {
    "scripts": [
      "src/background/index.js"
    ]
  },
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*",
        "file://*/*"
      ],
      "js": [
        "src/linkognito.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}