Time Blocked

Block yourself from any website at certain times of the day.

Time Blocked क्या है?

Time Blocked https://www.tyrotoxism.net द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Block yourself from any website at certain times of the day."।

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

screenshot

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

crx प्रारूप में Time Blocked एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This plugin allows you to be more productive, and it doesn't waste your time while doing so.

You can with ease dictate the time you want to be blocked from a website, and even allow yourself in only on weekends so you don't unblock yourself, and "forget" to block yourself again!

Feature suggestions are encouraged, but I will only implement features which makes this plugin simpler to use.

This plugin was made on a request: http://www.reddit.com/r/SomebodyMakeThis/comments/1igrkt/a_chrome_extension_that_prevents_me_from_visiting/                    

एक्सटेंशन की मूल जानकारी

नाम Time Blocked Time Blocked
ID kjnepmakcgjbllfnpdnppjpnfpoelabn
आधिकारिक URL https://chromewebstore.google.com/detail/time-blocked/kjnepmakcgjbllfnpdnppjpnfpoelabn
विवरण Block yourself from any website at certain times of the day.
फ़ाइल का आकार 68.39 KB
स्थापना संख्या 60
वर्तमान संस्करण 1.2.3
अंतिम अपडेट 2013-07-27
प्रकाशन तिथि 2013-07-27
रेटिंग 4.00/5 कुल 1 रेटिंग्स
डेवलपर https://www.tyrotoxism.net
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Time Blocked",
    "description": "Block yourself from any website at certain times of the day.",
    "version": "1.2.3",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "scripts": [
            "javascript\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "javascript\/content-script.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "page_action": {
        "default_icon": {
            "19": "icons\/icon-19.png",
            "38": "icons\/icon-38.png"
        },
        "default_title": "Time Blocked",
        "default_popup": "popup.html"
    }
}