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 |
| 官方網址 | 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"
]
} | |