Stop Autoplay for Youtube™ Extended

Stops autoplay on YouTube™. Extended: Starts the video when you focus the tab. Don't like? Use the version without 'Extended'.

Τι είναι το Stop Autoplay for Youtube™ Extended;

Το Stop Autoplay for Youtube™ Extended είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jacob "kurtextrem" Groß, και η κύρια λειτουργία του είναι "Stops autoplay on YouTube™. Extended: Starts the video when you focus the tab. Don't like? Use the version without 'Extended'.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Stop Autoplay for Youtube™ Extended

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

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

                        --- THIS IS THE EXTENDED VERSION: IT PLAYS THE VIDEO WHEN YOU SWITCH TO THE TAB ---
If you don't want this, search for the version without "Extended" or use this link: https://chrome.google.com/webstore/detail/stop-autoplay-for-youtube/figkapeodjhdgnpiamleongcmecfjccb

Version History
---------------
4.1.0: Modernized the code, more bullet-proof stopping. Merry Christmas!
4.0.6.3: Performance work; Also updated options page to give more information and a way to contact me when having issues.
4.0.5: This release stops pausing on playlist pages.
4.0.4: Right click on YT Video -> Loop is supported now.
Version 4.0: A YouTube™ experiment plays the video after being stopped. This updates addresses that. Also, it has a better performance now.

Description
-----------
If you've ever opened a bunch of videos in the background, you'll know how annoying it is when they all start playing automatically.

With this extension, videos only start playing when you actually switch to tab which has the video in it. You'll never have to worry about videos autoplaying in the background. Plus, they will auto buffer, so no annoying load-spinner.


Do you encounter any problems? Feel free to contact me on the GitHub project page: https://github.com/kurtextrem/StopAutoplay/issues.

FAQ
---
Why does it auto play the video after I switch to the tab?
See below:

What means "Extended"?
Stopped a video because you need to do something else? Switch back to the tab, it will start playing again.
If you don't want the extended feature, try out the standard version: https://chrome.google.com/webstore/detail/stop-autoplay-for-youtube/figkapeodjhdgnpiamleongcmecfjccb (Search for "Stop Autoplay for Youtube" (without the "Extended")                    

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

Όνομα Stop Autoplay for Youtube™ Extended Stop Autoplay for Youtube™ Extended
ID nilnpbhnhmmjioijfgilcohbknkgfmpa
Επίσημο URL https://chromewebstore.google.com/detail/stop-autoplay-for-youtube/nilnpbhnhmmjioijfgilcohbknkgfmpa
Περιγραφή Stops autoplay on YouTube™. Extended: Starts the video when you focus the tab. Don't like? Use the version without 'Extended'.
Μέγεθος Αρχείου 13.59 KB
Αριθμός Εγκαταστάσεων 17,754
Τρέχουσα Έκδοση 4.1.1
Τελευταία Ενημέρωση 2018-03-01
Ημερομηνία Δημοσίευσης 2018-03-01
Αξιολόγηση 2.34/5 Συνολικά 410 Αξιολογήσεις
Προγραμματιστής Jacob "kurtextrem" Groß
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/kurtextrem/StopAutoplay
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/kurtextrem/StopAutoplay/issues
URL της Σελίδας Πολιτικής Απορρήτου https://www.kurtextrem.de/chrome/PRIVACY.html
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Stop Autoplay for Youtube\u2122 Extended",
    "version": "4.1.1",
    "manifest_version": 2,
    "description": "Stops autoplay on YouTube\u2122. Extended: Starts the video when you focus the tab. Don't like? Use the version without 'Extended'.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "author": "Jacob \u201ekurtextrem\" Gro\u00df",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "http:\/\/youtube.com\/*",
                "https:\/\/www.youtube.com\/*",
                "https:\/\/youtube.com\/*"
            ],
            "js": [
                "start.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "main.js"
    ],
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "minimum_chrome_version": "42"
}