Audio Only for YouTube™

Listen to audio (no video) in YouTube and all embedded videos.

Τι είναι το Audio Only for YouTube™;

Το Audio Only for YouTube™ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sevina, και η κύρια λειτουργία του είναι "Listen to audio (no video) in YouTube and all embedded videos.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Audio Only for YouTube™

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

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

                        This extension lets you easily load YouTube videos with audio-only content.

The toolbar button serves as an ON|OFF switch. When the button's color is red, the add-on is active and when the color is lite grey, it is inactive. Please note that the default state is active. When you open a YouTube page and play a video, the add-on automatically loads audio source only and prevents the video content from loading. This way, you will save your internet bandwidth because the video content is much larger compared to the audio content. Moreover, when you just want to "listen" to a video, there is no need to load the video content at all.

Note: if you see any errors while the addon is active (i.e. the audio is not playing), please reload the page once. Moreover, this extension is not working for live video items.

Important note: Audio Only for YouTube™ add-on does NOT belong or relate to YouTube and has NO affiliations with Google Inc. or YouTube website at all. It is an unofficial extension that is developed and maintained independently by its author. YouTube™ is a registered trademark of Google Inc.

If you have a feature request, or found a bug to report, please fill out the bug report form on the add-on's homepage (https://mybrowseraddon.com/audio-only-for-youtube.html).                    

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

Όνομα Audio Only for YouTube™ Audio Only for YouTube™
ID jbonboilhhoakibpodmnkkcfjhkbajmk
Επίσημο URL https://chromewebstore.google.com/detail/audio-only-for-youtube/jbonboilhhoakibpodmnkkcfjhkbajmk
Περιγραφή Listen to audio (no video) in YouTube and all embedded videos.
Μέγεθος Αρχείου 37.3 KB
Αριθμός Εγκαταστάσεων 2,919
Τρέχουσα Έκδοση 0.1.7
Τελευταία Ενημέρωση 2023-06-13
Ημερομηνία Δημοσίευσης 2020-05-28
Αξιολόγηση 3.88/5 Συνολικά 34 Αξιολογήσεις
Προγραμματιστής Sevina
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://mybrowseraddon.com/audio-only-for-youtube.html
Διεύθυνση URL της Σελίδας Βοήθειας https://mybrowseraddon.com/audio-only-for-youtube.html
URL της Σελίδας Πολιτικής Απορρήτου https://mybrowseraddon.com/privacy-policy/developer/sevina.html
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.7",
    "manifest_version": 3,
    "name": "Audio Only for YouTube\u2122",
    "host_permissions": [
        "*:\/\/*.youtube.com\/*",
        "*:\/\/*.googlevideo.com\/*"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/audio-only-for-youtube.html",
    "description": "Listen to audio (no video) in YouTube and all embedded videos.",
    "permissions": [
        "storage",
        "webRequest",
        "declarativeNetRequest"
    ],
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "resources": [
                "data\/content_script\/page_context\/inject.js"
            ]
        }
    ],
    "action": {
        "default_title": "Audio Only for YouTube\u2122",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "content_scripts": [
        {
            "all_frames": false,
            "run_at": "document_start",
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "data\/content_script\/inject.js"
            ]
        },
        {
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.youtube.com\/embed*"
            ],
            "js": [
                "data\/content_script\/inject.js"
            ]
        }
    ],
    "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"
    }
}