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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
} | |