Twitter TW Blocker

Blur the tweets containing a trigger warning

Twitter TW Blocker là gì?

Twitter TW Blocker là một tiện ích mở rộng Chrome được phát triển bởi tymmesyde, và tính năng chính của nó là "Blur the tweets containing a trigger warning".

Ả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 Twitter TW Blocker

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

                        Use Twitter TW Blocker if you want to hide the tweets that have a trigger warning pattern (e.g. TW // content).
Just click on the tweet if you want to remove the warning.                    

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

Tên Twitter TW Blocker Twitter TW Blocker
ID cmgnaiadimhcfkmfehdbindohbenemnk
URL Chính Thức https://chromewebstore.google.com/detail/twitter-tw-blocker/cmgnaiadimhcfkmfehdbindohbenemnk
Mô tả Blur the tweets containing a trigger warning
Kích Thước Tệp 15 KB
Số Lần Cài Đặt 19
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-08-09
Ngày Phát Hành 2020-08-09
Nhà Phát Triển tymmesyde
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",
    "manifest_version": 2,
    "name": "Twitter TW Blocker",
    "description": "Blur the tweets containing a trigger warning",
    "version": "1.0",
    "icons": {
        "16": "src\/images\/icon_16.png",
        "32": "src\/images\/icon_32.png",
        "48": "src\/images\/icon_48.png",
        "128": "src\/images\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "css": [
                "src\/styles\/content.css"
            ],
            "js": [
                "src\/scripts\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/styles\/content.css"
    ],
    "browser_action": {
        "default_popup": "src\/popup.html",
        "default_icon": {
            "16": "src\/images\/icon_16.png",
            "32": "src\/images\/icon_32.png",
            "48": "src\/images\/icon_48.png",
            "128": "src\/images\/icon_128.png"
        }
    }
}