Ambient YouTube

Provides an ambient experience while watching YouTube

Ambient YouTube란 무엇입니까?

Ambient YouTube은(는) https://polymermallard.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provides an ambient experience while watching YouTube"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Ambient YouTube 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Ambient YouTube Ambient YouTube
ID odjobhlljplfhckfpcllpiffgmcbojeh
공식 URL https://chromewebstore.google.com/detail/ambient-youtube/odjobhlljplfhckfpcllpiffgmcbojeh
설명 Provides an ambient experience while watching YouTube
파일 크기 160 KB
설치 횟수 506
현재 버전 1.2.1
최근 업데이트 2020-05-21
출시 날짜 2020-05-20
평점 3.00/5 총 2 개의 평점
개발자 https://polymermallard.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.polymermallard.com
개인정보 보호 정책 페이지 URL https://www.polymermallard.com/privacy-policy
지원되는 언어 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"
        }
    ]
}