Twitter Timer

This timer sets the displayable time of Twitter. When the set time elapses, the tab closes without permission.

Twitter Timer란 무엇입니까?

Twitter Timer은(는) Haruya Nakamura에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This timer sets the displayable time of Twitter. When the set time elapses, the tab closes without permission."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        【To you who want to break out of Twitter】
This extension gives people who just watch too much Twitter time to concentrate on their work.
If you want to stop watching Twitter, try setting this extension.
When you open the Twitter site (twitter.com), this extension will automatically close Twitter open tabs after a set amount of time.                    

확장 프로그램 기본 정보

이름 Twitter Timer Twitter Timer
ID dbpliifabeopadfiaejlchjmdonpgdne
공식 URL https://chromewebstore.google.com/detail/twitter-timer/dbpliifabeopadfiaejlchjmdonpgdne
설명 This timer sets the displayable time of Twitter. When the set time elapses, the tab closes without permission.
파일 크기 1.03 MB
설치 횟수 60
현재 버전 2
최근 업데이트 2020-03-30
출시 날짜 2020-03-26
개발자 Haruya Nakamura
이메일 [email protected]
결제 유형 free
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "short_name": "__MSG_short_name__",
    "version": "2",
    "manifest_version": 2,
    "description": "__MSG_description__",
    "default_locale": "en",
    "icons": {
        "16": "icon\/icon16.png",
        "48": "icon\/icon48.png",
        "128": "icon\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "backend.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_popup": "options.html"
    }
}