Crackbook Revival

Limit junk sites in your daily infodiet.

Crackbook Revival란 무엇입니까?

Crackbook Revival은(는) ishmaeel에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Limit junk sites in your daily infodiet."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Crackbook Revival 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Crackbook Revival is an open source fork/modification of the original Crackbook extension by Gintautas Miliauskas (chrome.google.com/webstore/detail/crackbook/nbgjmohekjolcgemlolblankocjlgalf)

This is a Chrome extension for discouraging use of attention-sucking
websites such as Facebook or Reddit. The idea behind Crackbook is that delaying
access to the website is more effective than straight blocking because you
are less likely to just disable the block after a while.

The extension will delay every hit to blacklisted site. The delay is just
a few seconds initially, but it increases slightly on every hit.

Revival Changes:
- Removed attempted reporting of anonymous usage data (which wasn't working anyway due to original site being offline).
- Delay timer resets on specified intervals (which was already in the original repository but was not published on the store).
- Hide scrollbars until the content is revealed.
- Some fixes for the history graph.
- Some fixes for the options interface.
- Add option to use a blurred overlay - courtesy of @prettymuchbryce
- Pause video and audio in the background - courtesy of @nickwb
- Other minor fixes.                    

확장 프로그램 기본 정보

이름 Crackbook Revival Crackbook Revival
ID fakedinbmdjifniaepnfbplcheaecebc
공식 URL https://chromewebstore.google.com/detail/crackbook-revival/fakedinbmdjifniaepnfbplcheaecebc
설명 Limit junk sites in your daily infodiet.
파일 크기 189 KB
설치 횟수 1,654
현재 버전 1.5.1
최근 업데이트 2020-03-23
출시 날짜 2020-03-23
평점 4.35/5 총 26 개의 평점
개발자 ishmaeel
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Ishmaeel/CrackbookRevival
도움말 페이지 URL https://github.com/Ishmaeel/CrackbookRevival/issues
개인정보 보호 정책 페이지 URL https://github.com/Ishmaeel/CrackbookRevival/blob/master/PRIVACY.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Crackbook Revival",
    "short_name": "Crackbook-RV",
    "version": "1.5.1",
    "manifest_version": 2,
    "description": "Limit junk sites in your daily infodiet.",
    "icons": {
        "128": "images\/hamburger-128px.png"
    },
    "browser_action": {
        "default_icon": "images\/carrot-19px.png",
        "default_title": "Crackbook Revival",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "dimmer.js"
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "permissions": [
        "history",
        "notifications",
        "tabs",
        "*:\/\/*\/*"
    ]
}