List Builder for Twitter
Quickly build Twitter lists from any timeline view.
What is List Builder for Twitter?
List Builder for Twitter is a Chrome extension developed by https://www.electoralhq.com, and its main feature is "Quickly build Twitter lists from any timeline view.".
Extension Screenshots
Download List Builder for Twitter Extension CRX File
Download List Builder for Twitter 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
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
Extension Basic Information
Name | List Builder for Twitter |
ID | angdkjndobobaegbnhjaooedegkbibae |
Official URL | https://chromewebstore.google.com/detail/list-builder-for-twitter/angdkjndobobaegbnhjaooedegkbibae |
Description | Quickly build Twitter lists from any timeline view. |
File Size | 50.12 KB |
Installation Count | 803 |
Current Version | 0.4 |
Last Updated | 2017-04-03 |
Publish Date | 2017-04-03 |
Rating | 2.70/5 Total 10 Ratings |
Developer | https://www.electoralhq.com |
[email protected] | |
Payment Type | free |
Extension Website | https://www.electoralhq.com |
Help Page URL | https://github.com/ryanwi/listbuilder-ext/issues |
Supported Languages | 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" ] } ] } |