YouTube Spacebar pausing

Pause videos on page load with the space bar

YouTube Spacebar pausing란 무엇입니까?

YouTube Spacebar pausing은(는) D3.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pause videos on page load with the space bar"입니다.

YouTube Spacebar pausing 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This enables you to use the spacebar to pause YouTube videos as soon as the page has loaded. YouTube usually requires that you first manually pause the video by clicking the pause button before the spacebar trick works. This will enable you to use the spacebar to pause a YouTube video whenever you feel like!


CHANGELOG
---------

1.3 
- Fixed form focus issue, preventing you from using spaces in the search bar

1.2
- Fixed issue with pausing when writing a comment

1.1
- Fixed YouTube fullscreen issue

1.0
- Released!                    

확장 프로그램 기본 정보

이름 YouTube Spacebar pausing YouTube Spacebar pausing
ID bkpindoeklkmcchcidehelnihghppcdg
공식 URL https://chrome.google.com/webstore/detail/youtube-spacebar-pausing/bkpindoeklkmcchcidehelnihghppcdg
설명 Pause videos on page load with the space bar
파일 크기 23.57 KB
설치 횟수 28
현재 버전 1.3.0
최근 업데이트 2016-07-05
출시 날짜 2016-07-05
평점 3.38/5 총 13 개의 평점
개발자 D3.io
결제 유형 free
확장 프로그램 웹 사이트 https://www.d3.io
도움말 페이지 URL https://www.d3.io/contact
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Spacebar pausing",
    "version": "1.3.0",
    "description": "Pause videos on page load with the space bar",
    "icons": {
        "48": "Icons\/Icon48.png",
        "128": "Icons\/Icon128.png"
    },
    "author": "D3T Digital",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "scripts\/main.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "short_name": "YouTube Spacebar pausing",
    "web_accessible_resources": [
        "Icons\/*"
    ]
}