Twitter Timeline Auto Update
Updates the twitter timeline automatically when new tweets can be shown.
Twitter Timeline Auto Updateとは何ですか?
Twitter Timeline Auto Updateはhttps://systemcluster.meによって開発されたChromeの拡張機能で、その主な機能は「Updates the twitter timeline automatically when new tweets can be shown.」です。
拡張機能のスクリーンショット
Twitter Timeline Auto Update拡張機能のCRXファイルをダウンロード
Twitter Timeline Auto Update拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Twitter Auto Update updates the twitter timeline automatically, removing the need of the additional user interaction each time new tweets should be shown. By default the extension only updates the timeline while it isn't scrolled down, an option is provided to enable unconditional updates.
拡張機能の基本情報
名前 | Twitter Timeline Auto Update |
ID | ddbjabcmjjifognjcopebcllgpbdjlbm |
公式URL | https://chromewebstore.google.com/detail/twitter-timeline-auto-upd/ddbjabcmjjifognjcopebcllgpbdjlbm |
説明 | Updates the twitter timeline automatically when new tweets can be shown. |
ファイルサイズ | 23.5 KB |
インストール数 | 1,085 |
現在のバージョン | 0.3 |
最終更新日 | 2018-07-28 |
公開日 | 2018-07-28 |
評価 | 3.33/5 合計 9 レビュー |
開発者 | https://systemcluster.me |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Timeline Auto Update", "short_name": "Twitter Refresh", "description": "Updates the twitter timeline automatically when new tweets can be shown.", "version": "0.3", "options_ui": { "page": "chrome\/content\/settings_inline.html", "chrome_style": true }, "icons": { "64": "chrome\/skin\/icon64.png", "128": "chrome\/skin\/icon128.png", "256": "chrome\/skin\/icon256.png" }, "background": { "scripts": [ "lib\/background.js" ] }, "content_scripts": [ { "js": [ "lib\/inject.js" ], "matches": [ "*:\/\/twitter.com\/*" ], "run_at": "document_end" } ], "permissions": [ "*:\/\/twitter.com\/*" ] } |