Flagwall

Flag links to paywall sites

Flagwall là gì?

Flagwall là một tiện ích mở rộng Chrome được phát triển bởi Andrew Ivins, và tính năng chính của nó là "Flag links to paywall sites".

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

screenshot

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

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

                        Flagwall will scan each page for text hyperlinks to known domains that operate a paywall. It will flag each of these links with a dotted red underline so that you know before you click on it that it's likely to hit you with a paywall.

Flagwall does not attempt to block or subvert paywalls in any way. It merely exists to give the user an option of avoiding the typical bait and switch of following a link, only to be faced with a paywall.                    

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

Tên Flagwall Flagwall
ID gmlnfmmccieblogoplaacjohenlnbkae
URL Chính Thức https://chromewebstore.google.com/detail/flagwall/gmlnfmmccieblogoplaacjohenlnbkae
Mô tả Flag links to paywall sites
Kích Thước Tệp 16.77 KB
Số Lần Cài Đặt 27
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2019-10-03
Ngày Phát Hành 2019-10-02
Nhà Phát Triển Andrew Ivins
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Flagwall",
    "version": "1.0",
    "description": "Flag links to paywall sites",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_tite": "Flagwall",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/"
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "js": [
                "flaglinks.js"
            ]
        }
    ],
    "manifest_version": 2
}