YouStopper for YouTube™
Prevents YouTube™ videos autoplay
YouStopper for YouTube™란 무엇입니까?
YouStopper for YouTube™은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Prevents YouTube™ videos autoplay"입니다.
확장 프로그램 스크린샷
YouStopper for YouTube™ 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Prevents YouTube™ videos from starting to play automatically when you open them.
Doesn't affect ads so it's better to use together with an Ad-Blocking extension like uBlock Origin.
Doesn't stop autoplaying in playlists.
Source available at https://github.com/youstopper-dev/youstopper 확장 프로그램 기본 정보
| 이름 | |
| ID | hmfocflebeolgkehnimcchankdjljepb |
| 공식 URL | https://chromewebstore.google.com/detail/youstopper-for-youtube/hmfocflebeolgkehnimcchankdjljepb |
| 설명 | Prevents YouTube™ videos autoplay |
| 파일 크기 | 51.95 KB |
| 설치 횟수 | 1,482 |
| 현재 버전 | 0.2 |
| 최근 업데이트 | 2018-02-18 |
| 출시 날짜 | 2018-02-18 |
| 평점 | 3.56/5 총 41 개의 평점 |
| 개발자 | Unknown |
| 결제 유형 | free |
| 지원되는 언어 | en,ru |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "__MSG_extension_name__",
"short_name": "YouStopper",
"description": "__MSG_extension_description__",
"version": "0.2",
"default_locale": "en",
"icons": {
"32": "icons\/youstop_icon_32.png",
"48": "icons\/youstop_icon_48.png",
"64": "icons\/youstop_icon_64.png",
"128": "icons\/youstop_icon_128.png",
"512": "icons\/youstop_icon_512.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"page.js"
],
"browser_action": {
"default_icon": {
"32": "icons\/youstop_icon_32.png",
"64": "icons\/youstop_icon_64.png"
},
"default_title": "__MSG_ba_click2disable__"
},
"permissions": [
"storage"
],
"minimum_chrome_version": "50"
} | |