Tab Countdown Timer

A Chromium Extension that allows you to set a timer that counts down and then closes the tab.

Tab Countdown Timer란 무엇입니까?

Tab Countdown Timer은(는) lokico에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chromium Extension that allows you to set a timer that counts down and then closes the tab."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Tab Countdown Timer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Allows you to quickly set a countdown timer on a tab.  Once the timer expires, the tab closes.  Every tab can have a different timer.  Enter time by typing or by using a mousewheel.
---
Changes for v1.1
- Add dark mode based on current system settings
- Save last alarm values as default for next time
- Update to chrome manifest v3                    

확장 프로그램 기본 정보

이름 Tab Countdown Timer Tab Countdown Timer
ID maoljenpfpdblggdbnhmegofbhhcdgle
공식 URL https://chromewebstore.google.com/detail/tab-countdown-timer/maoljenpfpdblggdbnhmegofbhhcdgle
설명 A Chromium Extension that allows you to set a timer that counts down and then closes the tab.
파일 크기 101 KB
설치 횟수 6,368
현재 버전 1.1
최근 업데이트 2022-11-12
출시 날짜 2020-08-06
평점 4.29/5 총 14 개의 평점
개발자 lokico
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Countdown Timer",
    "version": "1.1",
    "manifest_version": 3,
    "description": "A Chromium Extension that allows you to set a timer that counts down and then closes the tab.",
    "icons": {
        "16": "icons\/hourglass16.png",
        "32": "icons\/hourglass32.png",
        "48": "icons\/hourglass48.png",
        "128": "icons\/hourglass128.png"
    },
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "service_worker": "background\/background.js"
    },
    "permissions": [
        "alarms",
        "storage"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}