Twitter Timer

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

Wat is Twitter Timer?

Twitter Timer is een Chrome-extensie ontwikkeld door Haruya Nakamura, en de belangrijkste functie is "This timer sets the displayable time of Twitter. When the set time elapses, the tab closes without permission.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Twitter Timer

Download Twitter Timer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Twitter Timer Twitter Timer
ID dbpliifabeopadfiaejlchjmdonpgdne
Officiële URL https://chromewebstore.google.com/detail/twitter-timer/dbpliifabeopadfiaejlchjmdonpgdne
Beschrijving This timer sets the displayable time of Twitter. When the set time elapses, the tab closes without permission.
Bestandsgrootte 1.03 MB
Aantal Installaties 60
Huidige Versie 2
Laatst Bijgewerkt 2020-03-30
Publicatiedatum 2020-03-26
Ontwikkelaar Haruya Nakamura
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}