List Builder for Twitter
Quickly build Twitter lists from any timeline view.
Wat is List Builder for Twitter?
List Builder for Twitter is een Chrome-extensie ontwikkeld door https://www.electoralhq.com, en de belangrijkste functie is "Quickly build Twitter lists from any timeline view.".
Extensie Screenshots
Download het CRX-bestand van de extensie List Builder for Twitter
Download List Builder for Twitter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | List Builder for Twitter |
ID | angdkjndobobaegbnhjaooedegkbibae |
Officiële URL | https://chromewebstore.google.com/detail/list-builder-for-twitter/angdkjndobobaegbnhjaooedegkbibae |
Beschrijving | Quickly build Twitter lists from any timeline view. |
Bestandsgrootte | 50.12 KB |
Aantal Installaties | 803 |
Huidige Versie | 0.4 |
Laatst Bijgewerkt | 2017-04-03 |
Publicatiedatum | 2017-04-03 |
Beoordeling | 2.70/5 Totaal 10 Beoordelingen |
Ontwikkelaar | https://www.electoralhq.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.electoralhq.com |
Help Pagina-URL | https://github.com/ryanwi/listbuilder-ext/issues |
Ondersteunde Talen | 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" ] } ] } |