Tweet Filter - Simple filter for Twitter

On your Twitter home page, collapse irrelevant tweets (that match your chosen keywords) into a single line of text.

Tweet Filter - Simple filter for Twitterคืออะไร?

Tweet Filter - Simple filter for Twitter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dan Teeter และคุณลักษณะหลักของมันคือ "On your Twitter home page, collapse irrelevant tweets (that match your chosen keywords) into a single line of text."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tweet Filter - Simple filter for Twitter

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

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

                        Do people that you follow occasionally tweet and retweet concerning a subject you find tedious? This extension may help to solve the problem.

I wrote this extension because I wanted to filter out retweets regarding Rob Ford minutia and also some duplicate-tweets from one online magazine I follow.

This extension adds a small control panel into your Twitter home page from whence you may add any number of keywords. If one of your keywords is found in the content of a tweet, that tweet will be "collapsed" into a single line of text i.e. 'filtered "Ford" from @ddale8' (see screenshots). You may also filter a twitter username, which is useful if you wish to collapse all the tweets or retweets of a given user. 

Note: TweetFilter only performs case-insensitive matching of whole words: i.e. if you add 'Ford' it will match the word 'ford', but not 'Oxford'.

TweetFilter will access your Twitter home page when you load it in order to provide its filtering functionality. The extension runs purely within your browser; it does not inject ads and it does not communicate with any external site. 

This extension utilizes Chrome's storage api to store your keywords within your browser. If you login to your Chrome browser, your keywords can be stored in Google's cloud and will be accessible from Chrome browsers on other machines when you login.

New! TweetFilter now repairs links in those annoying Quote Tweets (i.e. so that you can right click and "Open Link in New Tab")                    

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

ชื่อ Tweet Filter - Simple filter for Twitter Tweet Filter - Simple filter for Twitter
ID inlmddaifmjbmnjnaemhhjhiakdphfhd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tweet-filter-simple-filte/inlmddaifmjbmnjnaemhhjhiakdphfhd
คำอธิบาย On your Twitter home page, collapse irrelevant tweets (that match your chosen keywords) into a single line of text.
ขนาดไฟล์ 321 KB
จำนวนการติดตั้ง 265
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2017-03-23
วันที่เผยแพร่ 2017-03-22
คะแนน 2.78/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Dan Teeter
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tweet Filter - Simple filter for Twitter",
    "short_name": "Tweet Filter",
    "description": "On your Twitter home page, collapse irrelevant tweets (that match your chosen keywords) into a single line of text.",
    "version": "1.1",
    "icons": {
        "16": "twIcon16.png",
        "48": "twIcon48.png",
        "128": "twIcon128.png"
    },
    "permissions": [
        "https:\/\/twitter.com\/",
        "storage"
    ],
    "options_page": "twitterFilterPopup.html",
    "browser_action": {
        "default_icon": "smallIcon.png",
        "default_popup": "twitterFilterPopup.html"
    },
    "web_accessible_resources": [
        "jquery.js",
        "twitterFilter.js",
        "fonts\/fontawesome-webfont.eot",
        "fonts\/fontawesome-webfont.svg",
        "fonts\/fontawesome-webfont.ttf",
        "fonts\/fontawesome-webfont.woff",
        "twIcon19.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "jquery.js",
                "twitterFilter.js",
                "bootstrap.min.js"
            ],
            "css": [
                "styles.css",
                "css\/font-awesome.min.css"
            ]
        }
    ]
}