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ファイルをダウンロード

Twitter Timer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        【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
Eメール [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"
    }
}