Twitter View Count Remover

A chrome extension to remove the Views count from Twitter

Twitter View Count Removerคืออะไร?

Twitter View Count Remover เป็นส่วนขยายของ Chrome ที่พัฒนาโดย MyUsernamesThis และคุณลักษณะหลักของมันคือ "A chrome extension to remove the Views count from Twitter"

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

screenshot
screenshot

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

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

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

                        Tired of seeing the new Views counter on Twitter posts? This extension finds all instances of the Views counter and hides them on any Twitter.com page, restoring the previous interface consisting of only likes, replies, and retweets.

What's new:
Fixed bug affecting extension with no usernames in whitelist
Option to move views to after likes                    

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

ชื่อ Twitter View Count Remover Twitter View Count Remover
ID chfanlbndjhbjjbacpcjbogknncaadnc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitter-view-count-remove/chfanlbndjhbjjbacpcjbogknncaadnc
คำอธิบาย A chrome extension to remove the Views count from Twitter
ขนาดไฟล์ 141 KB
จำนวนการติดตั้ง 35
เวอร์ชันปัจจุบัน 0.2.2
อัปเดตครั้งล่าสุด 2023-01-16
วันที่เผยแพร่ 2022-12-26
คะแนน 4.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา MyUsernamesThis
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension to remove the Views count from Twitter",
    "version": "0.2.2",
    "manifest_version": 3,
    "name": "Twitter View Count Remover",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.twitter.com\/*",
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png",
                "pageScript.js"
            ],
            "matches": []
        }
    ],
    "permissions": [
        "storage"
    ]
}