Twitter Stress Reduction
Twitter Stress Reduction
Twitter Stress Reductionคืออะไร?
Twitter Stress Reduction เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://shirouzu.jp และคุณลักษณะหลักของมันคือ "Twitter Stress Reduction"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Stress Reduction
ดาวน์โหลดไฟล์ส่วนขยาย Twitter Stress Reduction ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A mini tool to use Twitter comfortably.
- Hide 'ForYou/Trending/What's happened/etc' entries.
- Fold/Unfold button for tweet image. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | ipnjgahnocpaefhffbnnjonihlihoeic |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/twitter-stress-reduction/ipnjgahnocpaefhffbnnjonihlihoeic |
| คำอธิบาย | Twitter Stress Reduction |
| ขนาดไฟล์ | 49.66 KB |
| จำนวนการติดตั้ง | 14,213 |
| เวอร์ชันปัจจุบัน | 0.3.5.1 |
| อัปเดตครั้งล่าสุด | 2024-01-09 |
| วันที่เผยแพร่ | 2020-06-02 |
| คะแนน | 4.89/5 รวมทั้งหมด 38 คะแนน |
| ผู้พัฒนา | https://shirouzu.jp |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://shirouzu.jp/tech/twitter-stress-reduction |
| URL หน้าช่วยเหลือ | https://groups.google.com/g/twitter-stress-reduction |
| ภาษาที่รองรับ | 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"
]
} | |