Threads Lists
Easy way to transfer your twitter followers
Cos'è Threads Lists?
Threads Lists è un'estensione di Chrome sviluppata da https://threadslists.com, e la sua funzione principale è "Easy way to transfer your twitter followers".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Threads Lists
Scarica i file di estensione Threads Lists 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
A simple app that finds your twitter followers and submits them to threads lists for you to easily click and follow.
Informazioni di Base sull'Estensione
Nome | Threads Lists |
ID | ikcondoimaicdklohocliopmdlfgoohn |
URL Ufficiale | https://chromewebstore.google.com/detail/threads-lists/ikcondoimaicdklohocliopmdlfgoohn |
Descrizione | Easy way to transfer your twitter followers |
Dimensione del File | 16.26 KB |
Conteggio Installazioni | 113 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2023-07-26 |
Data di Pubblicazione | 2023-07-26 |
Valutazione | 1.00/5 Totale 1 Valutazioni |
Sviluppatore | https://threadslists.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.threadslists.com |
URL della Pagina di Aiuto | https://www.threads.net/@bhsdrew |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Threads Lists", "version": "1.0", "description": "Easy way to transfer your twitter followers", "action": { "default_popup": "popup.html", "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } }, "web_accessible_resources": [ { "resources": [ "script.js" ], "matches": [ "https:\/\/*.twitter.com\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*" ], "js": [ "content_script.js" ] } ], "host_permissions": [ "https:\/\/www.threadslists.com\/*", "https:\/\/twitter.com\/*" ] } |