Crackbook Revival

Limit junk sites in your daily infodiet.

Crackbook Revival là gì?

Crackbook Revival là một tiện ích mở rộng Chrome được phát triển bởi ishmaeel, và tính năng chính của nó là "Limit junk sites in your daily infodiet.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Crackbook Revival

Tải xuống các tệp mở rộng Crackbook Revival dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Crackbook Revival Crackbook Revival
ID fakedinbmdjifniaepnfbplcheaecebc
URL Chính Thức https://chromewebstore.google.com/detail/crackbook-revival/fakedinbmdjifniaepnfbplcheaecebc
Mô tả Limit junk sites in your daily infodiet.
Kích Thước Tệp 189 KB
Số Lần Cài Đặt 1,654
Phiên Bản Hiện Tại 1.5.1
Cập Nhật Lần Cuối 2020-03-23
Ngày Phát Hành 2020-03-23
Đánh Giá 4.35/5 Tổng số 26 Đánh Giá
Nhà Phát Triển ishmaeel
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Ishmaeel/CrackbookRevival
URL Trang Trợ Giúp https://github.com/Ishmaeel/CrackbookRevival/issues
URL Trang Chính Sách Bảo Mật https://github.com/Ishmaeel/CrackbookRevival/blob/master/PRIVACY.md
Ngôn Ngữ Được Hỗ Trợ 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",
        "*:\/\/*\/*"
    ]
}