Twitter Stress Reduction
Twitter Stress Reduction
Co je Twitter Stress Reduction?
Twitter Stress Reduction je rozšíření Chrome vyvinuté https://shirouzu.jp, a jeho hlavní funkcí je „Twitter Stress Reduction“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Twitter Stress Reduction
Stáhněte si soubory rozšíření Twitter Stress Reduction ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
A mini tool to use Twitter comfortably. - Hide 'ForYou/Trending/What's happened/etc' entries. - Fold/Unfold button for tweet image.
Základní Informace o Rozšíření
Název | Twitter Stress Reduction |
ID | ipnjgahnocpaefhffbnnjonihlihoeic |
Oficiální URL | https://chromewebstore.google.com/detail/twitter-stress-reduction/ipnjgahnocpaefhffbnnjonihlihoeic |
Popis | Twitter Stress Reduction |
Velikost souboru | 49.66 KB |
Počet instalací | 14,213 |
Aktuální Verze | 0.3.5.1 |
Poslední Aktualizace | 2024-01-09 |
Datum Vydání | 2020-06-02 |
Hodnocení | 4.89/5 Celkem 38 Hodnocení |
Vývojář | https://shirouzu.jp |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://shirouzu.jp/tech/twitter-stress-reduction |
URL Stránky Nápovědy | https://groups.google.com/g/twitter-stress-reduction |
Podporované Jazyky | 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" ] } |