List Builder for Twitter
Quickly build Twitter lists from any timeline view.
Co to jest List Builder for Twitter?
List Builder for Twitter to rozszerzenie Chrome opracowane przez https://www.electoralhq.com, a jego główną funkcją jest „Quickly build Twitter lists from any timeline view.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia List Builder for Twitter
Pobierz pliki rozszerzeń List Builder for Twitter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | List Builder for Twitter |
ID | angdkjndobobaegbnhjaooedegkbibae |
Oficjalny URL | https://chromewebstore.google.com/detail/list-builder-for-twitter/angdkjndobobaegbnhjaooedegkbibae |
Opis | Quickly build Twitter lists from any timeline view. |
Rozmiar pliku | 50.12 KB |
Liczba instalacji | 803 |
Aktualna Wersja | 0.4 |
Ostatnia Aktualizacja | 2017-04-03 |
Data Publikacji | 2017-04-03 |
Ocena | 2.70/5 Łącznie 10 Oceny |
Deweloper | https://www.electoralhq.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://www.electoralhq.com |
Adres URL Strony Pomocy | https://github.com/ryanwi/listbuilder-ext/issues |
Obsługiwane Języki | 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" ] } ] } |