Delayed Browsing

Adds a delay page between you and the target of the links you click on.

Delayed Browsing क्या है?

Delayed Browsing fnurl द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a delay page between you and the target of the links you click on."।

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

screenshot
screenshot

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

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

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

                        Name changed from "Link quarantine" to Delayed Browsing.

This extension adds a "delay page" between you and the links you  click on. The idea is to make it harder to fall down rabbit holes.

Visiting any link you click on is delayed by 3 minutes. The window containing the delayed page must be the your active window. If you use tabs, the delayed tab has to  be the front-most tab as well. This is to remove the possibility to open a bunch of tabs or windows and have all of their delays running in parallell.

The extension is at the moment not compatible with Google search result pages, i.e. links from Google search results are not delayed.

The extension does in itself not save any information about which pages you visit.

No options can be set, but this will perhaps be possible in a future version.


# CHANGELOG

0.3.1   Fixed missed translation
0.3.0   Renamed extension to Delayed Browsing. Internationalized version + do
        not activate on google.com as Google does some JavaScript-stuff I have
        not had the time to figure out how to make the extension compatible
        with.
0.2.1   Fixed spelling error.                    

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

नाम Delayed Browsing Delayed Browsing
ID nlmdnhapiignmpkbniimlbpnielodfek
आधिकारिक URL https://chromewebstore.google.com/detail/delayed-browsing/nlmdnhapiignmpkbniimlbpnielodfek
विवरण Adds a delay page between you and the target of the links you click on.
फ़ाइल का आकार 118 KB
स्थापना संख्या 36
वर्तमान संस्करण 0.3.1
अंतिम अपडेट 2015-01-12
प्रकाशन तिथि 2015-01-12
रेटिंग 3.20/5 कुल 5 रेटिंग्स
डेवलपर fnurl
भुगतान के प्रकार free
समर्थित भाषाएँ en,sv
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "version": "0.3.1",
    "default_locale": "en",
    "description": "__MSG_extDesc__",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        "delay\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "delayedBrowsing.js"
            ]
        }
    ]
}