Delayed Browsing

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

Delayed Browsing란 무엇입니까?

Delayed Browsing은(는) fnurl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a delay page between you and the target of the links you click on."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Delayed Browsing 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}