TwitterTimelineLoader
スクロールが一番上の時に、Twitterホームのタイムラインを自動更新します。
What is TwitterTimelineLoader?
TwitterTimelineLoader is a Chrome extension developed by HexagramNM, and its main feature is "スクロールが一番上の時に、Twitterホームのタイムラインを自動更新します。".
Extension Screenshots
Download TwitterTimelineLoader Extension CRX File
Download TwitterTimelineLoader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Twitterのホーム画面を開いている際に、一番上を表示すると、追加操作不要でタイムラインが自動更新されます。また、一番上を表示し続けている間、タイムラインの自動更新を一定時間間隔で行います。 更新情報: 2023/08/20: TwitterのURLがtwitter.comからx.comに切り替わってもいいように、x.comでも機能するように設定を修正しました。(もちろん従来のtwitter.comでも機能します。) 2023/07/10: 更新間隔を設定できるオプションを追加しました。拡張機能をピン止めしている場合はアイコンを右クリックした際のメニューにオプションがあり、そこから設定できます。デフォルトは7.5秒で、これまでと同じ更新間隔となっています。 2022/06/26: Chrome拡張のマニフェストをv3に移行しました。Twitterを操作していない際に自動更新されないことがある不具合を修正しました。 2022/02/26: ツイート入力中に更新され、フォーカスが外れることを防ぐために、ツイート入力中は自動更新しないように修正しました。 2020/12/29: 検索ボタンをクリックし、検索候補を出している間は自動更新しないことで、検索候補が勝手に閉じないように修正しました。
Extension Basic Information
Name | TwitterTimelineLoader |
ID | ipmgjpmedafkmmadinmeoannpofakpbh |
Official URL | https://chromewebstore.google.com/detail/twittertimelineloader/ipmgjpmedafkmmadinmeoannpofakpbh |
Description | スクロールが一番上の時に、Twitterホームのタイムラインを自動更新します。 |
File Size | 18.73 KB |
Installation Count | 7,809 |
Current Version | 1.06 |
Last Updated | 2023-08-20 |
Publish Date | 2020-12-13 |
Rating | 4.22/5 Total 9 Ratings |
Developer | HexagramNM |
[email protected] | |
Payment Type | free |
Extension Website | http://nmsgameproject.web.fc2.com/ |
Supported Languages | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "TwitterTimelineLoader", "description": "\u30b9\u30af\u30ed\u30fc\u30eb\u304c\u4e00\u756a\u4e0a\u306e\u6642\u306b\u3001Twitter\u30db\u30fc\u30e0\u306e\u30bf\u30a4\u30e0\u30e9\u30a4\u30f3\u3092\u81ea\u52d5\u66f4\u65b0\u3057\u307e\u3059\u3002", "version": "1.06", "icons": { "128": "128.png" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/x.com\/*" ], "js": [ "TLLoader_main.js" ] } ], "permissions": [ "storage" ] } |