List Builder for Twitter
Quickly build Twitter lists from any timeline view.
什麼是List Builder for Twitter?
List Builder for Twitter是由https://www.electoralhq.com開發的Chrome擴展程式,該擴展的主要功能是“Quickly build Twitter lists from any timeline view.”。
擴展截圖
下載List Builder for Twitter擴展crx文件
下載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 |
官方網址 | 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" ] } ] } |