My Groups for YouTube™
Allows you to create your own groups for subscriptions and playlists on YouTube™.
My Groups for YouTube™란 무엇입니까?
My Groups for YouTube™은(는) Vladimir Volkov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to create your own groups for subscriptions and playlists on YouTube™."입니다.
확장 프로그램 스크린샷
My Groups for YouTube™ 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
YouTube is a trademark of Google Inc. Use of this trademark is subject to Google Permissions. 확장 프로그램 기본 정보
| 이름 | |
| ID | elfckedljnccjpiclpimfgekmiaoaamf |
| 공식 URL | https://chrome.google.com/webstore/detail/my-groups-for-youtube/elfckedljnccjpiclpimfgekmiaoaamf |
| 설명 | Allows you to create your own groups for subscriptions and playlists on YouTube™. |
| 파일 크기 | 335 KB |
| 설치 횟수 | 15 |
| 현재 버전 | 0.6.4 |
| 최근 업데이트 | 2019-09-28 |
| 출시 날짜 | 2019-09-28 |
| 평점 | 5.00/5 총 2 개의 평점 |
| 개발자 | Vladimir Volkov |
| 결제 유형 | free |
| 지원되는 언어 | en |
| manifest.json | |
{
"manifest_version": 2,
"name": "__MSG_ext_name__",
"description": "__MSG_ext_description__",
"version": "0.6.4",
"default_locale": "en",
"author": "__MSG_ext_author__",
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"css": [
"\/css\/content.css"
],
"js": [
"\/lib\/jquery-3.3.1.min.js",
"\/lib\/vue.min.js",
"\/lib\/vuex.min.js",
"\/lib\/lodash.min.js",
"\/js\/content.js"
]
}
],
"background": {
"scripts": [
"\/js\/background.js"
]
},
"browser_action": {
"default_icon": {
"16": "\/icons\/16.png",
"24": "\/icons\/24.png",
"32": "\/icons\/32.png"
},
"default_title": "__MSG_ext_name__",
"default_popup": "popup.html"
},
"icons": {
"16": "\/icons\/16.png",
"48": "\/icons\/48.png",
"128": "\/icons\/128.png"
},
"permissions": [
"tabs",
"storage",
"downloads"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"web_accessible_resources": [
"\/img\/how-to-use-1.jpg",
"\/img\/how-to-use-2.jpg",
"\/img\/how-to-use-3.jpg",
"\/img\/how-to-use-4.jpg"
]
} | |