Browser Stealth Mode
Disguise your internet browsing activities.
Browser Stealth Mode क्या है?
Browser Stealth Mode nivivive द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Disguise your internet browsing activities."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Browser Stealth Mode एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Browser Stealth Mode lets you browse and watch anything without worrying about who's looking over your shoulder. - Click the "eye" browser icon to toggle stealth mode on or off in your current tab. - Use keyboard shortcut (CMD+SHIFT+S on Mac, CTRL+SHIFT+S otherwise) to toggle stealth mode on or off. - Right-click on "eye" browser icon or a website to add the domain or page to a list of websites that Browser Stealth Mode is auto-enabled on. Setting options include: - enable grayscale - hide images - hide videos - show images/videos on hover - hide background images - and mute tab If you'd like to support me, please donate here: https://ko-fi.com/nivivive
एक्सटेंशन की मूल जानकारी
नाम | Browser Stealth Mode |
ID | offphobpedohkenckinejacpjodchgmn |
आधिकारिक URL | https://chromewebstore.google.com/detail/browser-stealth-mode/offphobpedohkenckinejacpjodchgmn |
विवरण | Disguise your internet browsing activities. |
फ़ाइल का आकार | 16.26 KB |
स्थापना संख्या | 817 |
वर्तमान संस्करण | 2.1.0 |
अंतिम अपडेट | 2021-03-11 |
प्रकाशन तिथि | 2014-09-16 |
रेटिंग | 4.75/5 कुल 4 रेटिंग्स |
डेवलपर | nivivive |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://forms.gle/tVF5NonHJsqfCK9J8 |
गोपनीयता नीति पृष्ठ URL | https://www.privacypolicies.com/live/618863e0-242f-4d66-af0d-90b7e909662e |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Browser Stealth Mode", "author": "Nivi Jayasekar", "description": "Disguise your internet browsing activities.", "version": "2.1.0", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_title": "Enable stealth mode", "default_icon": "icon32.png" }, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Shift+S", "mac": "Command+Shift+S", "chromeos": "Ctrl+Shift+S", "linux": "Ctrl+Shift+S" } } }, "permissions": [ "https:\/\/*\/*", "http:\/\/*\/*", "tabs", "storage", "contextMenus" ], "options_page": "options.html" } |