Twitter Timer

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

Qu'est-ce que Twitter Timer ?

Twitter Timer est une extension Chrome développée par Haruya Nakamura, et sa fonction principale est "This timer sets the displayable time of Twitter. When the set time elapses, the tab closes without permission.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Twitter Timer

Téléchargez les fichiers d'extension Twitter Timer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        【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.                    

Informations de Base sur l'Extension

Nom Twitter Timer Twitter Timer
ID dbpliifabeopadfiaejlchjmdonpgdne
URL Officiel https://chromewebstore.google.com/detail/twitter-timer/dbpliifabeopadfiaejlchjmdonpgdne
Description This timer sets the displayable time of Twitter. When the set time elapses, the tab closes without permission.
Taille du Fichier 1.03 MB
Nombre d'Installations 60
Version Actuelle 2
Dernière Mise à Jour 2020-03-30
Date de Publication 2020-03-26
Développeur Haruya Nakamura
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}