Threads Lists

Easy way to transfer your twitter followers

Vad är Threads Lists?

Threads Lists är en Chrome-tillägg utvecklad av https://threadslists.com, och dess huvudfunktion är "Easy way to transfer your twitter followers".

Tilläggsskärmbilder

screenshot

Ladda ner Threads Lists-förlängningens CRX-fil

Ladda ner Threads Lists-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        A simple app that finds your twitter followers and submits them to threads lists for you to easily click and follow.                    

Grundläggande Information om Tillägg

Namn Threads Lists Threads Lists
ID ikcondoimaicdklohocliopmdlfgoohn
Officiell webbadress https://chromewebstore.google.com/detail/threads-lists/ikcondoimaicdklohocliopmdlfgoohn
Beskrivning Easy way to transfer your twitter followers
Filstorlek 16.26 KB
Antal Installationer 113
Aktuell Version 1.0
Senast Uppdaterad 2023-07-26
Publiceringsdatum 2023-07-26
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare https://threadslists.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.threadslists.com
Hjälpsida URL https://www.threads.net/@bhsdrew
Stödda Språk 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\/*"
    ]
}