Twitter Filter

Hide people on Twitter without blocking or unfollowing them

Twitter Filterคืออะไร?

Twitter Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lihan และคุณลักษณะหลักของมันคือ "Hide people on Twitter without blocking or unfollowing them"

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

screenshot

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

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

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

                        You can also filter phrases (TV show spoilers, sports tweets, etc).

Leave a ★★★★★ review with feature request.                    

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

ชื่อ Twitter Filter Twitter Filter
ID hfaokbpplplaeglmcpmjacghbnidjnll
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitter-filter/hfaokbpplplaeglmcpmjacghbnidjnll
คำอธิบาย Hide people on Twitter without blocking or unfollowing them
ขนาดไฟล์ 13.05 MB
จำนวนการติดตั้ง 34
เวอร์ชันปัจจุบัน 0.1.4
อัปเดตครั้งล่าสุด 2014-07-17
วันที่เผยแพร่ 2014-07-16
คะแนน 4.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา lihan
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Filter",
    "version": "0.1.4",
    "manifest_version": 2,
    "description": "Hide people on Twitter without blocking or unfollowing them",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "48": "icons\/icon48.png"
    },
    "background": {
        "scripts": [
            "bower_components\/underscore\/underscore.js",
            "dist\/js\/util.js",
            "dist\/js\/background.js"
        ]
    },
    "options_page": "dist\/options\/index.html",
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Twitter filter"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/www.twitter.com\/*"
            ],
            "css": [
                "dist\/css\/inject.css"
            ],
            "js": [
                "bower_components\/underscore\/underscore.js",
                "bower_components\/jquery\/jquery.js",
                "bower_components\/backbone\/backbone.js",
                "dist\/js\/util.js",
                "dist\/js\/models.js",
                "dist\/js\/inject.js"
            ]
        }
    ]
}