Read Only Twitter

Enhance your Twitter experience by preventing yourself from actually interacting.

Cos'è Read Only Twitter?

Read Only Twitter è un'estensione di Chrome sviluppata da TheCleric, e la sua funzione principale è "Enhance your Twitter experience by preventing yourself from actually interacting.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Read Only Twitter

Scarica i file di estensione Read Only 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

                        By not interacting you're less likely to get sucked into useless arguments, which will make you happier in the long run.

Allow your Twitter stream to flow past you, and then let it go.

Options to disable tweets, retweets, likes, and direct messages.                    

Informazioni di Base sull'Estensione

Nome Read Only Twitter Read Only Twitter
ID cemhfjoonebpbnddchcopobdgdngnhdl
URL Ufficiale https://chromewebstore.google.com/detail/read-only-twitter/cemhfjoonebpbnddchcopobdgdngnhdl
Descrizione Enhance your Twitter experience by preventing yourself from actually interacting.
Dimensione del File 164 KB
Conteggio Installazioni 56
Versione Corrente 1.0.1
Ultimo Aggiornamento 2020-08-24
Data di Pubblicazione 2020-08-21
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore TheCleric
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/TheCleric/ReadOnlyTwitter
URL della Pagina di Aiuto https://github.com/TheCleric/ReadOnlyTwitter
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Read Only Twitter",
    "version": "1.0.1",
    "description": "Enhance your Twitter experience by preventing yourself from actually interacting.",
    "manifest_version": 2,
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "readOnlyTwitterOptions.html",
        "open_in_tab": false
    },
    "browser_action": {
        "default_popup": "readOnlyTwitterOptions.html",
        "default_icon": {
            "128": "icons\/ReadOnlyTwitter128.png",
            "512": "icons\/ReadOnlyTwitter.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "readOnlyTwitter.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/cdnjs.cloudflare.com https:\/\/www.googletagmanager.com; object-src 'self'",
    "icons": {
        "128": "icons\/ReadOnlyTwitter128.png",
        "512": "icons\/ReadOnlyTwitter.png"
    }
}