ReviewDB Twitter

Allows you to review other Twitter users

ReviewDB Twitter क्या है?

ReviewDB Twitter mantikafasi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to review other Twitter users"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ReviewDB Twitter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        A extension which allows you to review other users. Anyone who has the extension will be able to see what you commented.



Emoji artwork is based on flattened version of brain tweemoji (licensed under Creative Commons Attribution 4.0 International License. https://github.com/twitter/twemoji/blob/master/LICENSE-GRAPHICS)                    

एक्सटेंशन की मूल जानकारी

नाम ReviewDB Twitter ReviewDB Twitter
ID kmgbgncbggoffjbefmnknffpofcajohj
आधिकारिक URL https://chromewebstore.google.com/detail/reviewdb-twitter/kmgbgncbggoffjbefmnknffpofcajohj
विवरण Allows you to review other Twitter users
फ़ाइल का आकार 56.42 KB
स्थापना संख्या 88
वर्तमान संस्करण 0.1.1
अंतिम अपडेट 2023-06-06
प्रकाशन तिथि 2023-06-06
रेटिंग 3.40/5 कुल 5 रेटिंग्स
डेवलपर mantikafasi
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://reviewdb.mantikafasi.dev
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ReviewDB Twitter",
    "version": "0.1.1",
    "description": "Allows you to review other Twitter users",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "bundle.js",
                "bundle.css"
            ],
            "matches": [
                "https:\/\/twitter.com\/*"
            ]
        },
        {
            "resources": [
                "authpage.html"
            ],
            "matches": [
                "https:\/\/manti.vendicated.dev\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/manti.vendicated.dev\/api\/reviewdb-twitter\/auth*"
            ],
            "js": [
                "auth.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/manti.vendicated.dev\/api\/reviewdb-twitter\/auth",
            "https:\/\/twitter.com\/*"
        ]
    }
}