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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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