Simple Suspender
Suspend / unsuspend a tab, with minimal privacy concerns by design
Simple Suspenderとは何ですか?
Simple SuspenderはVehpuSによって開発されたChromeの拡張機能で、その主な機能は「Suspend / unsuspend a tab, with minimal privacy concerns by design」です。
拡張機能のスクリーンショット
Simple Suspender拡張機能のCRXファイルをダウンロード
Simple Suspender拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
} | |