Twitter Filter

Hide people on Twitter without blocking or unfollowing them

Twitter Filter란 무엇입니까?

Twitter Filter은(는) lihan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide people on Twitter without blocking or unfollowing them"입니다.

확장 프로그램 스크린샷

screenshot

Twitter Filter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}