Auto Pause and Resume for YouTube™

Pause YouTube player when page is hidden and resume when it is active again!

Τι είναι το Auto Pause and Resume for YouTube™;

Το Auto Pause and Resume for YouTube™ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον MeryDev, και η κύρια λειτουργία του είναι "Pause YouTube player when page is hidden and resume when it is active again!".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Auto Pause and Resume for YouTube™

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

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

                        Features:
- Automatically halts playback in a hidden YouTube tab.
- Automatically resumes playback when the tab regains focus.
- The option to deactivate the functionality via the action button (might have been hidden in the extension menu. If so you can pin the button to the toolbar area).

How it works:
A mini script is injected exclusively on YouTube pages to manage the player's play/pause status based on the visibility of the document. When a YouTube tab is brought to the forefront, the player automatically resumes, akin to hitting the play button. Conversely, when the document becomes hidden, the player automatically pauses, simulating the effect of pressing the pause button.

Sample scenario:
Imagine having multiple YouTube players across various tabs. Only the active player is in playback mode when focused, while all other players pause.

Change Log:
- Version 0.1.1: The extension can now be toggled on and off using the toolbar button, which is particularly handy for listening to YouTube videos in the background.
- Version 0.2.0: The extension now utilizes manifest v3 and requires Chrome version "95" or newer for the update to be applied.                    

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

Όνομα Auto Pause and Resume for YouTube™ Auto Pause and Resume for YouTube™
ID eahgapjcekpjmhkkdmfkfohnednkcekp
Επίσημο URL https://chromewebstore.google.com/detail/auto-pause-and-resume-for/eahgapjcekpjmhkkdmfkfohnednkcekp
Περιγραφή Pause YouTube player when page is hidden and resume when it is active again!
Μέγεθος Αρχείου 41.63 KB
Αριθμός Εγκαταστάσεων 1,138
Τρέχουσα Έκδοση 0.2.1
Τελευταία Ενημέρωση 2023-09-12
Ημερομηνία Δημοσίευσης 2017-02-19
Αξιολόγηση 4.25/5 Συνολικά 20 Αξιολογήσεις
Προγραμματιστής MeryDev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://webextension.org/listing/youtube-tools.html?from=auto-pause
Διεύθυνση URL της Σελίδας Βοήθειας https://webextension.org/listing/youtube-tools.html?from=auto-pause
URL της Σελίδας Πολιτικής Απορρήτου https://add0n.com/policies/mery.dev.txt
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Pause and Resume for YouTube\u2122",
    "description": "Pause YouTube player when page is hidden and resume when it is active again!",
    "version": "0.2.1",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/www.youtube.com\/*"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "action": [],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "\/data\/inject.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "homepage_url": "https:\/\/webextension.org\/listing\/youtube-tools.html?from=auto-pause",
    "icons": {
        "16": "\/data\/icons\/16.png",
        "32": "\/data\/icons\/32.png",
        "48": "\/data\/icons\/48.png",
        "64": "\/data\/icons\/64.png",
        "128": "\/data\/icons\/128.png",
        "256": "\/data\/icons\/256.png",
        "512": "\/data\/icons\/512.png"
    },
    "commands": {
        "_execute_action": []
    }
}