Signup Block

Remove signup dialogs and view the content of some websites without signing up.

Signup Block là gì?

Signup Block là một tiện ích mở rộng Chrome được phát triển bởi Mohamed Moussa, và tính năng chính của nó là "Remove signup dialogs and view the content of some websites without signing up.".

Ả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 Signup Block

Tải xuống các tệp mở rộng Signup Block 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

                        Signup Block removes signup pop-ups and allows you to view the content of some websites without signing up. It currently supports almost two dozen websites, including Quora, Pinterest, and the National Post. This extension has two modes: manual and automatic. It comes installed in manual mode, in which the user needs to click the Signup Block icon to remove the signup requirement on the page. To change the extension into automatic mode, go to the extensions section, under Signup Block click "Options", and then check the available checkbox. In automatic mode, the Signup Block extension will be automatically run when a page is loaded.

To run Signup Block, you can use the keyboard shortcut Alt + Shift + X.

To toggle Signup Block between automatic and manual mode, you can use the keyboard shortcut Alt + T.

Full list of supported sites: https://github.com/mmmoussa/Signup-Block/blob/master/Supported%20sites.md                    

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

Tên Signup Block Signup Block
ID joiaigcocfbhjbgeajdmmgchlbepelco
URL Chính Thức https://chrome.google.com/webstore/detail/signup-block/joiaigcocfbhjbgeajdmmgchlbepelco
Mô tả Remove signup dialogs and view the content of some websites without signing up.
Kích Thước Tệp 48.53 KB
Số Lần Cài Đặt 2,000
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2015-06-08
Ngày Phát Hành 2015-06-08
Đánh Giá 1.80/5 Tổng số 25 Đánh Giá
Nhà Phát Triển Mohamed Moussa
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Signup Block",
    "description": "Remove signup dialogs and view the content of some websites without signing up.",
    "version": "1.1",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": "icon-128.png",
        "default_title": "Signup Block"
    },
    "background": {
        "scripts": [
            "jquery-2.1.3.min.js",
            "background.js"
        ]
    },
    "commands": {
        "toggle-feature-foo": {
            "suggested_key": {
                "default": "Alt+T"
            },
            "description": "Toggle automatic signup removal feature"
        },
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+Shift+X",
                "mac": "Alt+Shift+X",
                "chromeos": "Alt+Shift+X",
                "linux": "Alt+Shift+X"
            }
        }
    },
    "permissions": [
        "tabs",
        "activeTab",
        "http:\/\/*\/*",
        "storage"
    ]
}