Twitter Cleaner

Removes annoying twitter boxes

Twitter Cleanerคืออะไร?

Twitter Cleaner เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://cavar.net และคุณลักษณะหลักของมันคือ "Removes annoying twitter boxes"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Cleaner

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

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

                        Removes trending, who to follow and footer boxes.
Report any issues here https://github.com/Palethorn/twitter_cleaner/issues                    

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

ชื่อ Twitter Cleaner Twitter Cleaner
ID oocpmdgjlccdinophpbbkmfdjooflfac
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/twitter-cleaner/oocpmdgjlccdinophpbbkmfdjooflfac
คำอธิบาย Removes annoying twitter boxes
ขนาดไฟล์ 92.48 KB
จำนวนการติดตั้ง 50
เวอร์ชันปัจจุบัน 2.0.0
อัปเดตครั้งล่าสุด 2019-11-21
วันที่เผยแพร่ 2019-11-21
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://cavar.net
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Palethorn/twitter_cleaner
URL หน้าช่วยเหลือ https://github.com/Palethorn/twitter_cleaner/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Cleaner",
    "version": "2.0.0",
    "manifest_version": 2,
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "description": "Removes annoying twitter boxes",
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "menu.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}