YouTube Auto Reply

Extension For auto-repeat Youtube Videos.

Vad är YouTube Auto Reply?

YouTube Auto Reply är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Extension For auto-repeat Youtube Videos.".

Tilläggsskärmbilder

screenshot

Ladda ner YouTube Auto Reply-förlängningens CRX-fil

Ladda ner YouTube Auto Reply-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 plays YouTube videos repeatedly.
Not only YouTube videos, but also YouTube videos linked to other sites can be played repeatedly.
A button is added to the bottom right of the video.                    

Grundläggande Information om Tillägg

Namn YouTube Auto Reply YouTube Auto Reply
ID kfkkmpmfofgkfnpiaepanikkeoelnbbf
Officiell webbadress https://chromewebstore.google.com/detail/youtube-auto-reply/kfkkmpmfofgkfnpiaepanikkeoelnbbf
Beskrivning Extension For auto-repeat Youtube Videos.
Filstorlek 37.34 KB
Antal Installationer 515
Aktuell Version 1.0.1
Senast Uppdaterad 2020-03-27
Publiceringsdatum 2020-03-26
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Unknown
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "version": "1.0.1",
    "default_locale": "en",
    "description": "__MSG_appDescription__",
    "icons": {
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "http:\/\/www.youtube.com\/*"
            ],
            "js": [
                "scripts\/repeat.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/repeat.png",
        "images\/repeat-active.png"
    ]
}