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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

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