Twitter Blocker

Easily Blocked Hashtags, tweets, categories of tweet and many more you are not interested in seeing on your timeline.

Twitter Blockerคืออะไร?

Twitter Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://obodugo.com และคุณลักษณะหลักของมันคือ "Easily Blocked Hashtags, tweets, categories of tweet and many more you are not interested in seeing on your timeline."

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

screenshot
screenshot
screenshot

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

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

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

                        Twitter Blocker helps you reduce the noise on your timeline. 
Ever encountered muting a tweet, hashtag or whatsoever on twitter,  but still see them popping up on the TL one way or the other? Well, this removes it entirely from the page so you don't get to see it again.

So What can i block using Twitter Blocker 🤔

- Tweets
- Tweets by Category
- Hashtags
- Tweets by Location

Hopefully this helps you maintain a good level of sanity on your TL :)
Experience any issue whilst using the extension, quickly buzz us using the support links on the page, and we would get on it ASAP.                    

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

ชื่อ Twitter Blocker Twitter Blocker
ID hifjjlinjpddohocbhfifpaopdfnfadl
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/twitter-blocker/hifjjlinjpddohocbhfifpaopdfnfadl
คำอธิบาย Easily Blocked Hashtags, tweets, categories of tweet and many more you are not interested in seeing on your timeline.
ขนาดไฟล์ 639 KB
จำนวนการติดตั้ง 79
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2020-06-21
วันที่เผยแพร่ 2020-06-21
ผู้พัฒนา https://obodugo.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://obodugo.com
URL หน้าช่วยเหลือ https://twitter.com/djunehor
URL หน้านโยบายความเป็นส่วนตัว https://shagital.com
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter  Blocker",
    "description": "Easily Blocked Hashtags, tweets, categories of tweet and many more you are not interested in seeing on your timeline.",
    "version": "1.0",
    "short_name": "RecordRTC",
    "author": "Obodugo Rapheal, Zacchaeus Bolaji",
    "manifest_version": 2,
    "minimum_chrome_version": "49",
    "homepage_url": "https:\/\/obodugo.com",
    "icons": {
        "16": "icon.png",
        "22": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "declarativeContent",
        "storage",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery.js",
                "script.js"
            ],
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Twitter Blocker",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}