Open Medium.com in Incognito
Always open medium.com in incognito mode.
What is Open Medium.com in Incognito?
Open Medium.com in Incognito is a Chrome extension developed by Henry Lim, and its main feature is "Always open medium.com in incognito mode.".
Extension Screenshots
Download Open Medium.com in Incognito Extension CRX File
Download Open Medium.com in Incognito 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
Always open medium.com in incognito mode. Say goodbye to Medium.com paywall 👋🏻 ✨ Features: - Automatically open medium.com in Incognito mode. - Missing feature? Let me know on my Twitter - @henrylim96 GitHub: https://github.com/limhenry/incognito-medium
Extension Basic Information
Name | Open Medium.com in Incognito |
ID | plfmkobfajhgppimalbbcdbcnkadohmj |
Official URL | https://chromewebstore.google.com/detail/open-mediumcom-in-incogni/plfmkobfajhgppimalbbcdbcnkadohmj |
Description | Always open medium.com in incognito mode. |
File Size | 18.57 KB |
Installation Count | 184 |
Current Version | 1.0 |
Last Updated | 2023-03-12 |
Publish Date | 2022-05-23 |
Rating | 3.00/5 Total 2 Ratings |
Developer | Henry Lim |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://policies.limhenry.xyz/slides |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Open Medium.com in Incognito", "description": "Always open medium.com in incognito mode.", "version": "1.0", "manifest_version": 3, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.medium.com\/**" ], "js": [ "contentscript.js" ] } ], "action": { "default_title": "Open Medium.com in Incognito", "default_icon": "images\/icon-128.png", "default_popup": "popup.html" }, "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "permissions": [ "storage" ] } |