Ambient YouTube

Provides an ambient experience while watching YouTube

Was ist Ambient YouTube?

Ambient YouTube ist eine Chrome-Erweiterung, die von https://polymermallard.com entwickelt wurde, und ihr Hauptmerkmal ist "Provides an ambient experience while watching YouTube".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Ambient YouTube-Erweiterungs-CRX-Datei herunterladen

Laden Sie Ambient YouTube-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension offers you the option to enhance your YouTube viewing experience with a colorful ambient light mode similar to some TVs on the market.

It reads the colors from the video you're watching and unobtrusively enhances your viewing experience by colorfully extending the screen in-place.

How much does it cost?
Free.

Are you tracking my viewing habits?
No; we are not explicitly collecting any analytics from this extension.

What user data do we collect?
None. The only thing stored behind-the-scenes are your settings for the extension itself, such as "autoload", "60fps", etc.

Where do I submit feedback / suggestions?
Reach out to someone from Polymer Mallard (https://www.polymermallard.com) for assistance.


// Changelog
v1.2.1 (May 20th, 2020)
 - Set max-height for TV and YouTube videos to address ultra-wide screens
 - Add bezel dropdown
 - Add additional bezels
 - Remove bloat filesize
 - Fix fonts for panel.
 - Add neumorphic design treatment to popup.                    

Grundlegende Informationen zur Erweiterung

Name Ambient YouTube Ambient YouTube
ID odjobhlljplfhckfpcllpiffgmcbojeh
Offizielle URL https://chromewebstore.google.com/detail/ambient-youtube/odjobhlljplfhckfpcllpiffgmcbojeh
Beschreibung Provides an ambient experience while watching YouTube
Dateigröße 160 KB
Installationsanzahl 506
Aktuelle Version 1.2.1
Letztes Update 2020-05-21
Veröffentlichungsdatum 2020-05-20
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler https://polymermallard.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.polymermallard.com
URL der Datenschutzrichtlinien-Seite https://www.polymermallard.com/privacy-policy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ambient YouTube",
    "short_name": "ambientyoutube",
    "version": "1.2.1",
    "default_locale": "en",
    "description": "Provides an ambient experience while watching YouTube",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "author": "Polymer Mallard",
    "homepage_url": "https:\/\/www.polymermallard.com",
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "shared\/image\/*",
        "shared\/image\/yt-ambientyoutube-button.svg"
    ],
    "browser_action": {
        "default_popup": "panels\/popup\/index.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "https:\/\/*.youtube.com\/",
                "https:\/\/*.youtube.com\/*",
                "https:\/\/www.youtube.com\/embed\/*"
            ],
            "js": [
                "shared\/script\/vendor\/color-thief.js",
                "shared\/script\/app\/helpers.js",
                "shared\/script\/app\/app.js"
            ],
            "css": [
                "shared\/style\/app\/youtube.css",
                "shared\/style\/app\/plugin.css"
            ],
            "run_at": "document_end"
        }
    ]
}