HideRT

Show and hide retweets from Twitter timeline.

HideRTคืออะไร?

HideRT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alan Dours และคุณลักษณะหลักของมันคือ "Show and hide retweets from Twitter timeline."

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

screenshot
screenshot

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

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

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

                        Hide retweets from Twitter timeline.                    

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

ชื่อ HideRT HideRT
ID gcekingpjldiahkdoddobmigpldmlojk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hidert/gcekingpjldiahkdoddobmigpldmlojk
คำอธิบาย Show and hide retweets from Twitter timeline.
ขนาดไฟล์ 16.7 KB
จำนวนการติดตั้ง 94
เวอร์ชันปัจจุบัน 1.1.1
อัปเดตครั้งล่าสุด 2020-08-01
วันที่เผยแพร่ 2019-05-17
คะแนน 4.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Alan Dours
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/alandours/hidert
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HideRT",
    "description": "Show and hide retweets from Twitter timeline.",
    "version": "1.1.1",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png"
    },
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png"
        },
        "default_title": "Hide retweets"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "hidert.js"
            ],
            "css": [
                "hidert.css"
            ]
        }
    ]
}