Read Only Twitter

Enhance your Twitter experience by preventing yourself from actually interacting.

Wat is Read Only Twitter?

Read Only Twitter is een Chrome-extensie ontwikkeld door TheCleric, en de belangrijkste functie is "Enhance your Twitter experience by preventing yourself from actually interacting.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Read Only Twitter

Download Read Only Twitter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Read Only Twitter Read Only Twitter
ID cemhfjoonebpbnddchcopobdgdngnhdl
Officiële URL https://chromewebstore.google.com/detail/read-only-twitter/cemhfjoonebpbnddchcopobdgdngnhdl
Beschrijving Enhance your Twitter experience by preventing yourself from actually interacting.
Bestandsgrootte 164 KB
Aantal Installaties 56
Huidige Versie 1.0.1
Laatst Bijgewerkt 2020-08-24
Publicatiedatum 2020-08-21
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar TheCleric
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/TheCleric/ReadOnlyTwitter
Help Pagina-URL https://github.com/TheCleric/ReadOnlyTwitter
Ondersteunde Talen 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"
    }
}