Twitter Stress Reduction

Twitter Stress Reduction

Qu'est-ce que Twitter Stress Reduction ?

Twitter Stress Reduction est une extension Chrome développée par https://shirouzu.jp, et sa fonction principale est "Twitter Stress Reduction".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Twitter Stress Reduction

Téléchargez les fichiers d'extension Twitter Stress Reduction au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        A mini tool to use Twitter comfortably.
- Hide 'ForYou/Trending/What's happened/etc' entries.
- Fold/Unfold button for tweet image.                    

Informations de Base sur l'Extension

Nom Twitter Stress Reduction Twitter Stress Reduction
ID ipnjgahnocpaefhffbnnjonihlihoeic
URL Officiel https://chromewebstore.google.com/detail/twitter-stress-reduction/ipnjgahnocpaefhffbnnjonihlihoeic
Description Twitter Stress Reduction
Taille du Fichier 49.66 KB
Nombre d'Installations 14,213
Version Actuelle 0.3.5.1
Dernière Mise à Jour 2024-01-09
Date de Publication 2020-06-02
Évaluation 4.89/5 Total 38 Évaluations
Développeur https://shirouzu.jp
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://shirouzu.jp/tech/twitter-stress-reduction
URL de la Page d'Aide https://groups.google.com/g/twitter-stress-reduction
Langues Prises en Charge 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"
    ]
}