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 |
官方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" ] } ] } |