Twitter Stress Reduction
Twitter Stress Reduction
什麼是Twitter Stress Reduction?
Twitter Stress Reduction是由https://shirouzu.jp開發的Chrome擴展程式,該擴展的主要功能是“Twitter Stress Reduction”。
擴展截圖
下載Twitter Stress Reduction擴展crx文件
下載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.
擴展基本資訊
名稱 | Twitter Stress Reduction |
ID | ipnjgahnocpaefhffbnnjonihlihoeic |
官方網址 | 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" ] } |