Twitter Stress Reduction
Twitter Stress Reduction
Hvad er Twitter Stress Reduction?
Twitter Stress Reduction er en Chrome-udvidelse udviklet af https://shirouzu.jp, og dens hovedfunktion er "Twitter Stress Reduction".
Udvidelsesskærmbilleder
Download Twitter Stress Reduction-udvidelses-CRX-fil
Download Twitter Stress Reduction-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
A mini tool to use Twitter comfortably. - Hide 'ForYou/Trending/What's happened/etc' entries. - Fold/Unfold button for tweet image.
Grundlæggende oplysninger om udvidelsen
Navn | Twitter Stress Reduction |
ID | ipnjgahnocpaefhffbnnjonihlihoeic |
Officiel URL | https://chromewebstore.google.com/detail/twitter-stress-reduction/ipnjgahnocpaefhffbnnjonihlihoeic |
Beskrivelse | Twitter Stress Reduction |
Filstørrelse | 49.66 KB |
Antal Installationer | 14,213 |
Nuværende Version | 0.3.5.1 |
Senest Opdateret | 2024-01-09 |
Udgivelsesdato | 2020-06-02 |
Bedømmelse | 4.89/5 Samlet 38 Bedømmelser |
Udvikler | https://shirouzu.jp |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://shirouzu.jp/tech/twitter-stress-reduction |
Hjælpeside-URL | https://groups.google.com/g/twitter-stress-reduction |
Understøttede Sprog | 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" ] } |