Twitter Stress Reduction

Twitter Stress Reduction

Cos'è Twitter Stress Reduction?

Twitter Stress Reduction è un'estensione di Chrome sviluppata da https://shirouzu.jp, e la sua funzione principale è "Twitter Stress Reduction".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Twitter Stress Reduction

Scarica i file di estensione Twitter Stress Reduction 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 mini tool to use Twitter comfortably.
- Hide 'ForYou/Trending/What's happened/etc' entries.
- Fold/Unfold button for tweet image.                    

Informazioni di Base sull'Estensione

Nome Twitter Stress Reduction Twitter Stress Reduction
ID ipnjgahnocpaefhffbnnjonihlihoeic
URL Ufficiale https://chromewebstore.google.com/detail/twitter-stress-reduction/ipnjgahnocpaefhffbnnjonihlihoeic
Descrizione Twitter Stress Reduction
Dimensione del File 49.66 KB
Conteggio Installazioni 14,213
Versione Corrente 0.3.5.1
Ultimo Aggiornamento 2024-01-09
Data di Pubblicazione 2020-06-02
Valutazione 4.89/5 Totale 38 Valutazioni
Sviluppatore https://shirouzu.jp
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://shirouzu.jp/tech/twitter-stress-reduction
URL della Pagina di Aiuto https://groups.google.com/g/twitter-stress-reduction
Lingue Supportate en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_desc__",
    "manifest_version": 2,
    "version": "0.3.5.1",
    "description": "__MSG_desc__",
    "default_locale": "ja",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ],
            "js": [
                "tw_fold.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "tw16.png",
        "default_title": "Twitter Stress Reduction"
    },
    "background": {
        "scripts": [
            "tw_background.js"
        ]
    },
    "options_ui": {
        "page": "tw_fold.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        "tw_fold.html"
    ],
    "icons": {
        "16": "tw16.png",
        "48": "tw48.png",
        "128": "tw128.png"
    },
    "permissions": [
        "https:\/\/twitter.com\/*",
        "https:\/\/mobile.twitter.com\/*",
        "contextMenus",
        "storage"
    ]
}