Twitter Stress Reduction
Twitter Stress Reduction
Co to jest Twitter Stress Reduction?
Twitter Stress Reduction to rozszerzenie Chrome opracowane przez https://shirouzu.jp, a jego główną funkcją jest „Twitter Stress Reduction”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Twitter Stress Reduction
Pobierz pliki rozszerzeń Twitter Stress Reduction w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
A mini tool to use Twitter comfortably.
- Hide 'ForYou/Trending/What's happened/etc' entries.
- Fold/Unfold button for tweet image. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | ipnjgahnocpaefhffbnnjonihlihoeic |
| Oficjalny URL | https://chromewebstore.google.com/detail/twitter-stress-reduction/ipnjgahnocpaefhffbnnjonihlihoeic |
| Opis | Twitter Stress Reduction |
| Rozmiar pliku | 49.66 KB |
| Liczba instalacji | 14,213 |
| Aktualna Wersja | 0.3.5.1 |
| Ostatnia Aktualizacja | 2024-01-09 |
| Data Publikacji | 2020-06-02 |
| Ocena | 4.89/5 Łącznie 38 Oceny |
| Deweloper | https://shirouzu.jp |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://shirouzu.jp/tech/twitter-stress-reduction |
| Adres URL Strony Pomocy | https://groups.google.com/g/twitter-stress-reduction |
| Obsługiwane Języki | 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"
]
} | |