Read Only Twitter
Enhance your Twitter experience by preventing yourself from actually interacting.
Read Only Twitterとは何ですか?
Read Only TwitterはTheClericによって開発されたChromeの拡張機能で、その主な機能は「Enhance your Twitter experience by preventing yourself from actually interacting.」です。
拡張機能のスクリーンショット
Read Only Twitter拡張機能のCRXファイルをダウンロード
Read Only Twitter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
By not interacting you're less likely to get sucked into useless arguments, which will make you happier in the long run. Allow your Twitter stream to flow past you, and then let it go. Options to disable tweets, retweets, likes, and direct messages.
拡張機能の基本情報
名前 | Read Only Twitter |
ID | cemhfjoonebpbnddchcopobdgdngnhdl |
公式URL | https://chromewebstore.google.com/detail/read-only-twitter/cemhfjoonebpbnddchcopobdgdngnhdl |
説明 | Enhance your Twitter experience by preventing yourself from actually interacting. |
ファイルサイズ | 164 KB |
インストール数 | 56 |
現在のバージョン | 1.0.1 |
最終更新日 | 2020-08-24 |
公開日 | 2020-08-21 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | TheCleric |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/TheCleric/ReadOnlyTwitter |
ヘルプページのURL | https://github.com/TheCleric/ReadOnlyTwitter |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Read Only Twitter", "version": "1.0.1", "description": "Enhance your Twitter experience by preventing yourself from actually interacting.", "manifest_version": 2, "permissions": [ "storage" ], "options_ui": { "page": "readOnlyTwitterOptions.html", "open_in_tab": false }, "browser_action": { "default_popup": "readOnlyTwitterOptions.html", "default_icon": { "128": "icons\/ReadOnlyTwitter128.png", "512": "icons\/ReadOnlyTwitter.png" } }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "readOnlyTwitter.js" ] } ], "content_security_policy": "script-src 'self' https:\/\/cdnjs.cloudflare.com https:\/\/www.googletagmanager.com; object-src 'self'", "icons": { "128": "icons\/ReadOnlyTwitter128.png", "512": "icons\/ReadOnlyTwitter.png" } } |