Light Tab Suspender

Alternative to the great suspender

什么是Light Tab Suspender?

Light Tab Suspender是由shaunmolloy开发的Chrome扩展程序,该扩展的主要功能是“Alternative to the great suspender”。

扩展截图

screenshot
screenshot

下载Light Tab Suspender扩展crx文件

下载Light Tab Suspender扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        An alternative Chrome extension to the great suspender.

Pros:
- Maintain user privacy
- Light implementation

Coming soon:
- Tab Favicon
- Options page                    

扩展基本信息

名称 Light Tab Suspender Light Tab Suspender
ID omemdnaphiccifgleodlhhbdgnaahhfa
官方URL https://chromewebstore.google.com/detail/light-tab-suspender/omemdnaphiccifgleodlhhbdgnaahhfa
简介 Alternative to the great suspender
文件大小 11.64 KB
安装次数 11
当前版本 1.1.0
更新时间 2021-02-22
上架时间 2021-02-21
评分 5.00/5 共1次评分
开发者 shaunmolloy
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/shaunmolloy/chrome-light-tab-suspender
帮助页面URL https://github.com/shaunmolloy/chrome-light-tab-suspender/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Light Tab Suspender",
    "description": "Alternative to the great suspender",
    "version": "1.1.0",
    "manifest_version": 2,
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "js\/vendor\/browser-polyfill.js",
            "js\/helpers\/promise.js",
            "js\/helpers\/suspend.js",
            "js\/helpers\/commands.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "js\/content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "web_accessible_resources": [
        "js\/tab.js"
    ],
    "commands": {
        "suspend_tab": {
            "suggested_key": {
                "default": "Alt+S"
            },
            "description": "Suspend \/ Unsuspend Tab"
        }
    },
    "icons": {
        "128": "icon-128.png"
    }
}