Make Twitter Great Again

Block tweets about U.S. 2016 election in your feed

ما هو Make Twitter Great Again؟

Make Twitter Great Again هو إضافة Chrome تم تطويرها بواسطة adilnaut، والميزة الرئيسية لها هي "Block tweets about U.S. 2016 election in your feed".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Make Twitter Great Again

قم بتنزيل ملفات الامتداد Make Twitter Great Again بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Our extension hides tweets about U.S. 2016 elections from your twitter feed. It uses machine learning and artificial intelligence approach to block tweets, which means that it looks to the content of the tweets and does not biased towards specific users.
DISCLAIMER: as our extension uses machine learning algorithms, our predictions may not always be accurate. That is why you can always show tweets, that were hidden by it.                    

معلومات أساسية عن التمديد

الاسم Make Twitter Great Again Make Twitter Great Again
ID beifniogjbogfikkdkblpemliilcjnhf
عنوان URL الرسمي https://chromewebstore.google.com/detail/make-twitter-great-again/beifniogjbogfikkdkblpemliilcjnhf
الوصف Block tweets about U.S. 2016 election in your feed
حجم الملف 41.49 KB
عدد التثبيتات 47
النسخة الحالية 1.0.2
آخر تحديث 2016-10-09
تاريخ النشر 2016-10-09
تقييم 4.33/5 مجموع تقييمات 6
المطور adilnaut
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة http://maketwittergreatagain.weebly.com
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Make Twitter Great Again",
    "description": "Block tweets about U.S. 2016 election in your feed",
    "version": "1.0.2",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Switch blocking"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "http:\/\/twitter.com\/*"
            ],
            "js": [
                "jquery.js",
                "initialize.js",
                "content.js",
                "popup.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}