List Builder for Twitter
Quickly build Twitter lists from any timeline view.
List Builder for Twitterคืออะไร?
List Builder for Twitter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.electoralhq.com และคุณลักษณะหลักของมันคือ "Quickly build Twitter lists from any timeline view."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย List Builder for Twitter
ดาวน์โหลดไฟล์ส่วนขยาย List Builder for Twitter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Quickly build Twitter lists with List Builder. Visible from any timeline view, you can select individual tweets or all on the screen and include the users into one of your lists. Great for events and conferences where you want to build list of people tweeting a hashtag to follow them after the event. More Twitter List tools @ https://www.electoralhq.com
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | List Builder for Twitter |
ID | angdkjndobobaegbnhjaooedegkbibae |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/list-builder-for-twitter/angdkjndobobaegbnhjaooedegkbibae |
คำอธิบาย | Quickly build Twitter lists from any timeline view. |
ขนาดไฟล์ | 50.12 KB |
จำนวนการติดตั้ง | 803 |
เวอร์ชันปัจจุบัน | 0.4 |
อัปเดตครั้งล่าสุด | 2017-04-03 |
วันที่เผยแพร่ | 2017-04-03 |
คะแนน | 2.70/5 รวมทั้งหมด 10 คะแนน |
ผู้พัฒนา | https://www.electoralhq.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.electoralhq.com |
URL หน้าช่วยเหลือ | https://github.com/ryanwi/listbuilder-ext/issues |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "List Builder for Twitter", "description": "Quickly build Twitter lists from any timeline view.", "version": "0.4", "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "permissions": [ "declarativeContent" ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "page_action": { "default_icon": "images\/icon16.png", "default_title": "List Builder", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*" ], "js": [ "js\/jquery-2.1.0.min.js", "js\/mutation-summary.js", "js\/main.js" ], "css": [ "css\/main.css" ] } ] } |