Shift Youtube Optimizer

Chrome extension to hide/reduce the number of videos shown on YouTube.

Shift Youtube Optimizer란 무엇입니까?

Shift Youtube Optimizer은(는) alexander.foster.mcculloch에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension to hide/reduce the number of videos shown on YouTube."입니다.

확장 프로그램 스크린샷

screenshot

Shift Youtube Optimizer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        As the summary above states, this is a simple open-source chrome extension written in vanilla JavaScript, CSS and of course, HTML, using the Chrome Extension format, although shortly there should be an extension for Firefox as well. I noticed a number of other Chrome Extensions that were similar but they all only worked on the homepage, so I decided to make one that worked all over the site, and didn't need the mouse to scroll before it would activate.

I spent a few days looking into how YouTube sets up the front-end of their website, so if anyone has any questions, feel free to shoot me a message. Also, if anyone would like to check out the source-code, or contribute to make it ever better (or fix bugs), check out the github page for this chrome extension : https://github.com/robertfrosty/shift-yt-optimizer .                    

확장 프로그램 기본 정보

이름 Shift Youtube Optimizer Shift Youtube Optimizer
ID hfndjegliabemhpfcdecfehlipjdnecp
공식 URL https://chromewebstore.google.com/detail/shift-youtube-optimizer/hfndjegliabemhpfcdecfehlipjdnecp
설명 Chrome extension to hide/reduce the number of videos shown on YouTube.
파일 크기 1.74 MB
설치 횟수 23
현재 버전 1.0.3
최근 업데이트 2021-10-23
출시 날짜 2021-09-24
평점 4.75/5 총 4 개의 평점
개발자 alexander.foster.mcculloch
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/robertfrosty/shift-yt-optimizer
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Shift Youtube Optimizer",
    "description": "Chrome extension to hide\/reduce the number of videos shown on YouTube.",
    "version": "1.0.3",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "observe.js"
            ]
        }
    ],
    "action": {
        "default_popup": ".\/ui\/options.html",
        "default_icon": {
            "16": ".\/ui\/icons\/icon.png",
            "32": ".\/ui\/icons\/icon2x.png",
            "48": ".\/ui\/icons\/icon3x.png",
            "128": ".\/ui\/icons\/icon128px.png"
        }
    },
    "icons": {
        "16": ".\/ui\/icons\/icon.png",
        "32": ".\/ui\/icons\/icon2x.png",
        "48": ".\/ui\/icons\/icon3x.png",
        "128": ".\/ui\/icons\/icon128px.png"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ]
}