Twitter Rate Limit Checker

A simple extension to read your tweet reading limit

Cos'è Twitter Rate Limit Checker?

Twitter Rate Limit Checker è un'estensione di Chrome sviluppata da kalraevyn, e la sua funzione principale è "A simple extension to read your tweet reading limit".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Twitter Rate Limit Checker

Scarica i file di estensione Twitter Rate Limit Checker 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

                        Shows you how many tweets you have remaining and when your count will refresh.                    

Informazioni di Base sull'Estensione

Nome Twitter Rate Limit Checker Twitter Rate Limit Checker
ID dejlgdoficmagonlokogpogdgoedidfi
URL Ufficiale https://chromewebstore.google.com/detail/twitter-rate-limit-checke/dejlgdoficmagonlokogpogdgoedidfi
Descrizione A simple extension to read your tweet reading limit
Dimensione del File 9.79 KB
Conteggio Installazioni 42
Versione Corrente 0.2.0
Ultimo Aggiornamento 2023-07-13
Data di Pubblicazione 2023-07-05
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore kalraevyn
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitter Rate Limit Checker",
    "description": "A simple extension to read your tweet reading limit",
    "version": "0.2.0",
    "permissions": [
        "webRequest"
    ],
    "host_permissions": [
        "https:\/\/twitter.com\/*"
    ],
    "icons": {
        "128": "img\/twitter 128.png",
        "48": "img\/twitter 48.png"
    },
    "content_scripts": [
        {
            "js": [
                "\/scripts\/content.js"
            ],
            "matches": [
                "*:\/\/twitter.com\/home",
                "*:\/\/twitter.com\/notifications"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "\/scripts\/background.js"
    }
}