TweetBlocker

This extension lets you block tweets that you don't want to see on Twitter by keyword.

TweetBlockerคืออะไร?

TweetBlocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย geojow และคุณลักษณะหลักของมันคือ "This extension lets you block tweets that you don't want to see on Twitter by keyword."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TweetBlocker

ดาวน์โหลดไฟล์ส่วนขยาย TweetBlocker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Don't want to see any more tweets about the Kardashian's? Want to avoid seeing spoilers from the new Game of Thrones episode? Look no further, this extension is the answer to all your prayers. 

This extension will hide tweets that contain the key word you have provided. You don't need to worry about capitalisation either as we take care of that for you!

Blocked tweets can be viewed by clicking on the blank area where the tweet should have been, but do so at your own peril, it could be another fidget spinner video.

To unblock a keyword, simply click on it.

So happy blocking, leave a review, and tell your friends so they can block all your duck face selfies.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ TweetBlocker TweetBlocker
ID accehpjnlgmhmjbhjmiogbkcfbkcefkl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tweetblocker/accehpjnlgmhmjbhjmiogbkcfbkcefkl
คำอธิบาย This extension lets you block tweets that you don't want to see on Twitter by keyword.
ขนาดไฟล์ 41.17 KB
จำนวนการติดตั้ง 25
เวอร์ชันปัจจุบัน 1.0.0.0
อัปเดตครั้งล่าสุด 2017-08-20
วันที่เผยแพร่ 2017-08-20
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา geojow
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TweetBlocker",
    "description": "This extension lets you block tweets that you don't want to see on Twitter by keyword.",
    "version": "1.0.0.0",
    "browser_action": {
        "default_icon": "twitter_16.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/",
        "https:\/\/www.google-analytics.com\/",
        "tabs",
        "http:\/\/*\/*",
        "storage"
    ],
    "icons": {
        "16": "twitter_16.png",
        "48": "twitter_48.png",
        "128": "twitter_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "jquery-2.2.0.min.js",
                "tweetblocker.js",
                "popup.js"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}