Threads Lists
Easy way to transfer your twitter followers
Что такое Threads Lists?
Threads Lists - это расширение Chrome, разработанное https://threadslists.com, и его основная функция - "Easy way to transfer your twitter followers".
Снимки экрана расширения
Скачать файл CRX расширения Threads Lists
Скачайте файлы расширений Threads Lists в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
A simple app that finds your twitter followers and submits them to threads lists for you to easily click and follow.
Основная информация о расширении
Название | Threads Lists |
ID | ikcondoimaicdklohocliopmdlfgoohn |
Официальный URL | https://chromewebstore.google.com/detail/threads-lists/ikcondoimaicdklohocliopmdlfgoohn |
Описание | Easy way to transfer your twitter followers |
Размер файла | 16.26 KB |
Количество установок | 113 |
Текущая Версия | 1.0 |
Последнее Обновление | 2023-07-26 |
Дата публикации | 2023-07-26 |
Рейтинг | 1.00/5 Всего 1 оценок |
Разработчик | https://threadslists.com |
Электронная почта | andrew@merlintech.xyz |
Тип оплаты | free |
Официальный сайт расширения | https://www.threadslists.com |
URL страницы помощи | https://www.threads.net/@bhsdrew |
Поддерживаемые языки | 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\/*" ] } |