TikTok Auto Next

Auto play next video on tiktok

Vad är TikTok Auto Next?

TikTok Auto Next är en Chrome-tillägg utvecklad av james.leach.miao, och dess huvudfunktion är "Auto play next video on tiktok".

Tilläggsskärmbilder

screenshot

Ladda ner TikTok Auto Next-förlängningens CRX-fil

Ladda ner TikTok Auto Next-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

                        This extension will help you to automatically play the next video after the current one has finished playing.

Free your hands and enjoy the videos.                    

Grundläggande Information om Tillägg

Namn TikTok Auto Next TikTok Auto Next
ID ngkhljhlamemcpajjlakpdadamgieknc
Officiell webbadress https://chromewebstore.google.com/detail/tiktok-auto-next/ngkhljhlamemcpajjlakpdadamgieknc
Beskrivning Auto play next video on tiktok
Filstorlek 18.27 KB
Antal Installationer 2,314
Aktuell Version 1.0
Senast Uppdaterad 2022-04-01
Publiceringsdatum 2022-03-31
Betyg 4.47/5 Totalt 17 Betyg
Utvecklare james.leach.miao
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://twitter.com/james_lm93
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TikTok Auto Next",
    "description": "Auto play next video on tiktok",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "service-worker.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "16": "\/images\/off16.png",
            "32": "\/images\/off32.png",
            "48": "\/images\/off48.png",
            "128": "\/images\/off128.png"
        }
    },
    "icons": {
        "16": "\/images\/off16.png",
        "32": "\/images\/off32.png",
        "48": "\/images\/off48.png",
        "128": "\/images\/off128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.tiktok.com\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ]
}