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 |
官方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" ] } |