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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This timer sets the displayable time of Twitter. When the set time elapses, the tab closes without permission."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Twitter Timer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}