Eight Dollars

Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.

Eight Dollarsคืออะไร?

Eight Dollars เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Walter Lim และคุณลักษณะหลักของมันคือ "Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users."

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

screenshot

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

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

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

                        Eight Dollars helps Twitter users differentiate between users that paid for verification and users that were given Twitter Verification.

Got an idea for a feature or issues using the extension? Visit https://github.com/wseagar/eight-dollars/issues                    

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

ชื่อ Eight Dollars Eight Dollars
ID fjbponfbognnefnmbffcfllkibbbobki
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/eight-dollars/fjbponfbognnefnmbffcfllkibbbobki
คำอธิบาย Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.
ขนาดไฟล์ 3.25 MB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2023-05-01
วันที่เผยแพร่ 2022-11-12
คะแนน 4.48/5 รวมทั้งหมด 83 คะแนน
ผู้พัฒนา Walter Lim
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/wseagar/eight-dollars
URL หน้าช่วยเหลือ https://github.com/wseagar/eight-dollars
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Eight Dollars",
    "version": "2.0",
    "description": "Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.",
    "icons": {
        "16": ".\/assets\/16.png",
        "32": ".\/assets\/32.png",
        "48": ".\/assets\/48.png",
        "256": ".\/assets\/256.png",
        "512": ".\/assets\/512.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "script.js",
                "search.js",
                "data\/verified.txt"
            ],
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": ".\/assets\/16.png",
            "32": ".\/assets\/32.png"
        },
        "default_title": "Eight Dollars - Options",
        "default_popup": "options\/options.html"
    },
    "permissions": [
        "storage"
    ]
}