YouTube Repeater

Repeats YouTube video after it ends.

Τι είναι το YouTube Repeater;

Το YouTube Repeater είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον shogo, και η κύρια λειτουργία του είναι "Repeats YouTube video after it ends.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης YouTube Repeater

Λήψη αρχείων επέκτασης YouTube Repeater σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        You can make your YouTube video repeat automatically right from the page.
- No external link
- No need for playlists
- Repeat infinitely with just 1 click

----- v.0.0.4 -----
Fixed the extension to work with the new YouTube design from fall 2018
----- v.0.0.3 -----
Fixed the icon to show inactive when on non-youtube pages.
----- v.0.0.2 -----
Fixed icon to show the repeat status when tabs are switched.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα YouTube Repeater YouTube Repeater
ID lgffcdbnficjmckoidgcmcajeadoekgi
Επίσημο URL https://chrome.google.com/webstore/detail/youtube-repeater/lgffcdbnficjmckoidgcmcajeadoekgi
Περιγραφή Repeats YouTube video after it ends.
Μέγεθος Αρχείου 16.98 KB
Αριθμός Εγκαταστάσεων 423
Τρέχουσα Έκδοση 0.0.4
Τελευταία Ενημέρωση 2019-03-18
Ημερομηνία Δημοσίευσης 2019-03-18
Αξιολόγηση 3.50/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής shogo
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://shogo.eu/
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Repeater",
    "description": "Repeats YouTube video after it ends.",
    "version": "0.0.4",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "tabs",
        "notifications",
        "webNavigation"
    ]
}