Linkognito
Open links in incognito mode
What is Linkognito?
Linkognito is a Chrome extension developed by Gandi.net, and its main feature is "Open links in incognito mode".
Extension Screenshots
Download Linkognito Extension CRX File
Download Linkognito extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Open all links that have a "linkognito" html class element in incognito mode (private browsing window).
Extension Basic Information
Name | |
ID | ocdngomloomamlekjhlpdkgimgjhnjfm |
Official URL | https://chrome.google.com/webstore/detail/linkognito/ocdngomloomamlekjhlpdkgimgjhnjfm |
Description | Open links in incognito mode |
File Size | 18.94 KB |
Installation Count | 55 |
Current Version | 1.4 |
Last Updated | 2017-05-11 |
Publish Date | 2017-05-11 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Gandi.net |
Payment Type | free |
Extension Website | https://github.com/Gandi/linkognito |
Help Page URL | https://github.com/Gandi/linkognito/issues |
Supported Languages | en-US |
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 } ] } |