Twitter Stress Reduction
Twitter Stress Reduction
Vad är Twitter Stress Reduction?
Twitter Stress Reduction är en Chrome-tillägg utvecklad av https://shirouzu.jp, och dess huvudfunktion är "Twitter Stress Reduction".
Tilläggsskärmbilder
Ladda ner Twitter Stress Reduction-förlängningens CRX-fil
Ladda ner Twitter Stress Reduction-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
A mini tool to use Twitter comfortably.
- Hide 'ForYou/Trending/What's happened/etc' entries.
- Fold/Unfold button for tweet image. Grundläggande Information om Tillägg
| Namn | |
| ID | ipnjgahnocpaefhffbnnjonihlihoeic |
| Officiell webbadress | https://chromewebstore.google.com/detail/twitter-stress-reduction/ipnjgahnocpaefhffbnnjonihlihoeic |
| Beskrivning | Twitter Stress Reduction |
| Filstorlek | 49.66 KB |
| Antal Installationer | 14,213 |
| Aktuell Version | 0.3.5.1 |
| Senast Uppdaterad | 2024-01-09 |
| Publiceringsdatum | 2020-06-02 |
| Betyg | 4.89/5 Totalt 38 Betyg |
| Utvecklare | https://shirouzu.jp |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://shirouzu.jp/tech/twitter-stress-reduction |
| Hjälpsida URL | https://groups.google.com/g/twitter-stress-reduction |
| Stödda Språk | 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"
]
} | |