Focus YouTube: Remove the recommendations
This extension removes parts of YouTube that lead people down the never-ending rabbit hole of recommendations. If you've ever…
Focus YouTube: Remove the recommendations란 무엇입니까?
Focus YouTube: Remove the recommendations은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension removes parts of YouTube that lead people down the never-ending rabbit hole of recommendations. If you've ever…"입니다.
확장 프로그램 스크린샷
Focus YouTube: Remove the recommendations 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension removes parts of YouTube that lead people down the never-ending rabbit hole of recommendations. If you've ever opened YouTube with the intention of learning something new and becoming the best you, but found your self 3 hours later watching [insert viral YouTube video genre here] and feeling guilty about it, this is the extension for you. If not or you don't care, you probably shouldn't install this as this extension probably removes decades advanced AI research embedded into YouTube in a fell,.innerHTML = "", swoop. The source code for this extension can be found: https://github.com/zkry/focus-youtube This works well with the "Stop Autoplay" extension: https://chrome.google.com/webstore/detail/stop-autoplay-next-for-yo/bhnhbmjfaanopkalgkjoiemhekdnhanh/related?hl=tr
확장 프로그램 기본 정보
이름 | Focus YouTube: Remove the recommendations |
ID | ejjfgahdiphopekkdkkkapolodefpenn |
공식 URL | https://chromewebstore.google.com/detail/focus-youtube-remove-the/ejjfgahdiphopekkdkkkapolodefpenn |
설명 | This extension removes parts of YouTube that lead people down the never-ending rabbit hole of recommendations. If you've ever… |
파일 크기 | 47.67 KB |
설치 횟수 | 769 |
현재 버전 | 0.3 |
최근 업데이트 | 2018-08-19 |
출시 날짜 | 2018-08-19 |
평점 | 4.91/5 총 11 개의 평점 |
개발자 | Unknown |
결제 유형 | free |
지원되는 언어 | en,tr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Focus YouTube: Remove the recommendations", "version": "0.3", "browser_action": { "default_icon": "img\/logo.png", "default_title": "Focus - Youtube", "default_popup": "popup.html" }, "icons": { "128": "img\/logo.png" }, "permissions": [ "*:\/\/youtube.com\/*" ], "background": { "scripts": [ "thirdParty\/jquery-3.3.1.min.js", "src\/background.js" ], "persistent": false }, "default_locale": "en", "content_scripts": [ { "js": [ "src\/content-script.js" ], "all_frames": true, "run_at": "document_end", "matches": [ "*:\/\/www.youtube.com\/*" ] } ] } |