Read Only Twitter

Enhance your Twitter experience by preventing yourself from actually interacting.

Vad är Read Only Twitter?

Read Only Twitter är en Chrome-tillägg utvecklad av TheCleric, och dess huvudfunktion är "Enhance your Twitter experience by preventing yourself from actually interacting.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Read Only Twitter-förlängningens CRX-fil

Ladda ner Read Only Twitter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Read Only Twitter Read Only Twitter
ID cemhfjoonebpbnddchcopobdgdngnhdl
Officiell webbadress https://chromewebstore.google.com/detail/read-only-twitter/cemhfjoonebpbnddchcopobdgdngnhdl
Beskrivning Enhance your Twitter experience by preventing yourself from actually interacting.
Filstorlek 164 KB
Antal Installationer 56
Aktuell Version 1.0.1
Senast Uppdaterad 2020-08-24
Publiceringsdatum 2020-08-21
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare TheCleric
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/TheCleric/ReadOnlyTwitter
Hjälpsida URL https://github.com/TheCleric/ReadOnlyTwitter
Stödda Språk 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"
    }
}