ReviewDB Twitter

Allows you to review other Twitter users

Cos'è ReviewDB Twitter?

ReviewDB Twitter è un'estensione di Chrome sviluppata da mantikafasi, e la sua funzione principale è "Allows you to review other Twitter users".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione ReviewDB Twitter

Scarica i file di estensione ReviewDB Twitter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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)                    

Informazioni di Base sull'Estensione

Nome ReviewDB Twitter ReviewDB Twitter
ID kmgbgncbggoffjbefmnknffpofcajohj
URL Ufficiale https://chromewebstore.google.com/detail/reviewdb-twitter/kmgbgncbggoffjbefmnknffpofcajohj
Descrizione Allows you to review other Twitter users
Dimensione del File 56.42 KB
Conteggio Installazioni 88
Versione Corrente 0.1.1
Ultimo Aggiornamento 2023-06-06
Data di Pubblicazione 2023-06-06
Valutazione 3.40/5 Totale 5 Valutazioni
Sviluppatore mantikafasi
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://reviewdb.mantikafasi.dev
Lingue Supportate 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\/*"
        ]
    }
}