List Builder for Twitter
Quickly build Twitter lists from any timeline view.
Cos'è List Builder for Twitter?
List Builder for Twitter è un'estensione di Chrome sviluppata da https://www.electoralhq.com, e la sua funzione principale è "Quickly build Twitter lists from any timeline view.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione List Builder for Twitter
Scarica i file di estensione List Builder for Twitter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | List Builder for Twitter |
ID | angdkjndobobaegbnhjaooedegkbibae |
URL Ufficiale | https://chromewebstore.google.com/detail/list-builder-for-twitter/angdkjndobobaegbnhjaooedegkbibae |
Descrizione | Quickly build Twitter lists from any timeline view. |
Dimensione del File | 50.12 KB |
Conteggio Installazioni | 803 |
Versione Corrente | 0.4 |
Ultimo Aggiornamento | 2017-04-03 |
Data di Pubblicazione | 2017-04-03 |
Valutazione | 2.70/5 Totale 10 Valutazioni |
Sviluppatore | https://www.electoralhq.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.electoralhq.com |
URL della Pagina di Aiuto | https://github.com/ryanwi/listbuilder-ext/issues |
Lingue Supportate | 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" ] } ] } |