Eight Dollars
Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.
Eight Dollars क्या है?
Eight Dollars Walter Lim द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Eight Dollars एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" ] } |