Youtubify
Customize youtube ! Change text, background, icon colors, fonts, choose between patterns !
Youtubify란 무엇입니까?
Youtubify은(는) pinheiro.adam에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customize youtube ! Change text, background, icon colors, fonts, choose between patterns ! "입니다.
확장 프로그램 스크린샷
Youtubify 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension let you change text, background, icons colors and fonts ! Customize everything, from menu colors to subscribe button !This add-on let you change the opacity of colors, and let you choose between multiple choice of pattern to use as background ! Choose between 3 basic themes . Change video playback bar color,subscribe button, choose between 3 different fonts (more to come), over 15 patterns, change text colors individually . Customize youtube how you want it ! To come in future update : Adding shadows to containers. Adding borders to containers. Uploading and adding images as backgrounds. Adding more fonts and patterns.
확장 프로그램 기본 정보
이름 | |
ID | aiaogccoclgannlkgoagnefiioddkmnc |
공식 URL | https://chrome.google.com/webstore/detail/youtubify/aiaogccoclgannlkgoagnefiioddkmnc |
설명 | Customize youtube ! Change text, background, icon colors, fonts, choose between patterns ! |
파일 크기 | 889 KB |
설치 횟수 | 97 |
현재 버전 | 1.4 |
최근 업데이트 | 2020-01-04 |
출시 날짜 | 2020-01-04 |
평점 | 3.00/5 총 2 개의 평점 |
개발자 | pinheiro.adam |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.pinada.me/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtubify", "version": "1.4", "description": "Customize youtube ! Change text, background, icon colors, fonts, choose between patterns ! ", "icons": { "48": "\/images\/icon_48.png", "96": "\/images\/logo_chrome.png" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "buy.js", "jquery\/jquery.js", "browser-polyfill.js", "content-script.js" ] } ], "permissions": [ "*:\/\/www.youtube.com\/*", "activeTab", "tabs", "storage", "webRequest", "cookies" ], "background": { "scripts": [ "buy.js", "jquery\/jquery.js", "browser-polyfill.js", "background-script.js" ] }, "web_accessible_resources": [ "images\/*", "patterns\/*" ], "browser_action": { "browser_style": true, "default_popup": "popup\/popup.html", "default_icon": { "16": "icons\/page-16.png", "32": "icons\/page-32.png" } } } |