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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}