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文件

下载Crackbook Revival扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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",
        "*:\/\/*\/*"
    ]
}