Twitter Timeline Auto Update
Updates the twitter timeline automatically when new tweets can be shown.
Twitter Timeline Auto Updateคืออะไร?
Twitter Timeline Auto Update เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://systemcluster.me และคุณลักษณะหลักของมันคือ "Updates the twitter timeline automatically when new tweets can be shown."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Timeline Auto Update
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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\/*" ] } |