Simple Suspender
Suspend / unsuspend a tab, with minimal privacy concerns by design
Simple Suspender क्या है?
Simple Suspender VehpuS द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Suspend / unsuspend a tab, with minimal privacy concerns by design"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Simple Suspender एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A cross-browser extension to suspend inactive / unused tabs by "hiding" them behind a static, generic browser error page. Basically to suspend https://moshe-gr.com, it will be redirected to http://localhost:0/#https://www.moshe-gr.com (try it ;) ). If you want to install the extension from source code (to ensure no possible abuse) - follow the instructions in the Github repo: https://github.com/VehpuS/simple-cross-browser-suspender.
एक्सटेंशन की मूल जानकारी
नाम | Simple Suspender |
ID | foejeakhjndjjodhmcieiihikcdpciak |
आधिकारिक URL | https://chromewebstore.google.com/detail/simple-suspender/foejeakhjndjjodhmcieiihikcdpciak |
विवरण | Suspend / unsuspend a tab, with minimal privacy concerns by design |
फ़ाइल का आकार | 93.4 KB |
स्थापना संख्या | 38 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2021-07-25 |
प्रकाशन तिथि | 2021-07-25 |
डेवलपर | VehpuS |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://github.com/VehpuS/simple-cross-browser-suspender/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simple Suspender", "version": "1.0", "manifest_version": 3, "description": "Suspend \/ unsuspend a tab, with minimal privacy concerns by design", "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "icon16.png", "24": "icon24.png", "32": "icon32.png", "48": "icon48.png" }, "default_title": "Suspend" }, "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "activeTab" ] } |