Remove YouTube Autoplay

Isn't YouTube autoplay the worst? This removes it

Τι είναι το Remove YouTube Autoplay;

Το Remove YouTube Autoplay είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Kareem ElFaramawi, και η κύρια λειτουργία του είναι "Isn't YouTube autoplay the worst? This removes it".

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

screenshot
screenshot

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

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

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

                        Simple extension to completely disable and remove the YouTube autoplay feature, which would load another video after the current one ends.

This extension will continue to work if you:
- Delete browser history
- Enter incognito mode (After enabling this option in your extension settings)

Note that this extension only affects videos that would normally show the autoplay switch, this excludes playlists, livestreams, etc.                    

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

Όνομα Remove YouTube Autoplay Remove YouTube Autoplay
ID afppjndapmkekhnionfccdnajhdnokhj
Επίσημο URL https://chromewebstore.google.com/detail/remove-youtube-autoplay/afppjndapmkekhnionfccdnajhdnokhj
Περιγραφή Isn't YouTube autoplay the worst? This removes it
Μέγεθος Αρχείου 1.68 MB
Αριθμός Εγκαταστάσεων 848
Τρέχουσα Έκδοση 0.1.7
Τελευταία Ενημέρωση 2023-06-05
Ημερομηνία Δημοσίευσης 2018-10-06
Αξιολόγηση 3.57/5 Συνολικά 23 Αξιολογήσεις
Προγραμματιστής Kareem ElFaramawi
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/krx/chrome-delete-youtube-autoplay
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Remove YouTube Autoplay",
    "description": "Isn't YouTube autoplay the worst? This removes it",
    "author": "krx",
    "version": "0.1.7",
    "host_permissions": [
        "http:\/\/www.youtube.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/disableAutoplay.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_icon": "img\/icon_19.png"
    },
    "icons": {
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.png",
        "64": "img\/icon_64.png",
        "128": "img\/icon_128.png"
    }
}