Vinylizr for YouTube™

Add a cool vinyl touch to your favorite music!

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

Το Vinylizr for YouTube™ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον micpob, και η κύρια λειτουργία του είναι "Add a cool vinyl touch to your favorite music!".

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

screenshot
screenshot
screenshot

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

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

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

                        🎷 🎵 🎺 This extension will add a cool background of vinyl sound to YouTube™ videos, making good music even better!  🎸🎵 🥁

IMPORTANT: Please reload Chrome after installing the extension to activate it!

You can easily activate or deactivate the vinyl sound with a button that will appear under the title of the video.

The samples are accurately selected from real vinyl records, to let you immerse yourself in a pleasant vintage atmosphere.

🎛️ You can choose between 3 degrees of vinyl wear, ranging from an almost intact to a highly damaged record.
Each wear level includes multiple vinyl sounds. A new sound will be selected randomly for every video that starts playing. 
On longer videos, the vinyl sample will be changed from time to time to maintain variety. 

▶️ If you don’t find the vinyl sample that is currently playing to be well matched with the video that is being reproduced, just click the Skip button, and another random vinyl sound will start playing.

🎚️ Important note on volume: what you set with Vinylizr’s volume fader is the loudness of the vinyl sound. At 100% volume, the vinyl is playing at its full loudness, while at 0% it will be muted. 
Once you have found a good mix between vinyl volume and video volume, you can freely change the volume of the YouTube™ video, and the vinyl volume will follow around, maintaining the ratio you set before.

🔊 Just like with old vinyl records, a bit of djing work is required! 🎧

I hope you will like this extension, it was made from a music lover for other music lovers. ❤️🎹🎶
Have fun!                    

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

Όνομα Vinylizr for YouTube™ Vinylizr for YouTube™
ID menanhkamjnihglgnockbffnjnngolfn
Επίσημο URL https://chromewebstore.google.com/detail/vinylizr-for-youtube/menanhkamjnihglgnockbffnjnngolfn
Περιγραφή Add a cool vinyl touch to your favorite music!
Μέγεθος Αρχείου 6.78 MB
Αριθμός Εγκαταστάσεων 326
Τρέχουσα Έκδοση 1.8
Τελευταία Ενημέρωση 2023-10-24
Ημερομηνία Δημοσίευσης 2020-07-01
Αξιολόγηση 4.67/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής micpob
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en,fr,es,it,pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vinylizr for YouTube\u2122",
    "short_name": "Vinylizr",
    "version": "1.8",
    "description": "__MSG_extension_description__",
    "manifest_version": 3,
    "default_locale": "en",
    "icons": {
        "16": "images\/icons\/icon16.png",
        "24": "images\/icons\/icon24.png",
        "32": "images\/icons\/icon32.png",
        "48": "images\/icons\/icon48.png",
        "64": "images\/icons\/icon64.png",
        "128": "images\/icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.youtu.be\/*"
            ],
            "js": [
                "injectAudioObject.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.youtu.be\/*"
            ],
            "js": [
                "injectButton.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "16": "images\/icons\/icon16.png",
            "24": "images\/icons\/icon24.png",
            "32": "images\/icons\/icon32.png",
            "48": "images\/icons\/icon48.png",
            "64": "images\/icons\/icon64.png",
            "128": "images\/icons\/icon128.png"
        },
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "sounds\/*\/*.mp3"
            ],
            "matches": [
                ""
            ]
        },
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}