YouTube Play/Pause
On Clicking the icon of this extension, it will play/pause the video playing on YouTube.com
YouTube Play/Pause란 무엇입니까?
YouTube Play/Pause은(는) Harshad Mane에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "On Clicking the icon of this extension, it will play/pause the video playing on YouTube.com"입니다.
확장 프로그램 스크린샷
YouTube Play/Pause 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
You are listening to songs on YouTube while working and somebody comes to you, now you have to pause YouTube song but it is difficult to find the YouTube tab, or you just don't want your friend to know which song you were listening to. Answer is simple, use this extension, click on the extension icon and a pop-up UI will open, click Play/Pause button. You can also, - "Play Next" track with a single click. - "Play Previous" track, if you are playing a play lsit. - A new button to open existing YouTube tab, if not already opened then it will open a new one AdSkipper: - This feature is enabled by default with this extension - This feature will smartly detect ads playing in YouTube, on detecting it will Mute the ad so that you don't hear those - Once the Ad shows "Skip Ad" button, the intelligent code will click on the button and will Unmute the video so that you will be able to enjoy the next Video Feel free to let us know what features you will want!! More features coming soon.
확장 프로그램 기본 정보
이름 | YouTube Play/Pause |
ID | pmadkkbhfioemnigffhpgjockmoagmdm |
공식 URL | https://chrome.google.com/webstore/detail/youtube-playpause/pmadkkbhfioemnigffhpgjockmoagmdm |
설명 | On Clicking the icon of this extension, it will play/pause the video playing on YouTube.com |
파일 크기 | 10.67 KB |
설치 횟수 | 460 |
현재 버전 | 0.4.0 |
최근 업데이트 | 2019-08-23 |
출시 날짜 | 2019-08-19 |
평점 | 4.44/5 총 9 개의 평점 |
개발자 | Harshad Mane |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Play\/Pause", "version": "0.4.0", "description": "On Clicking the icon of this extension, it will play\/pause the video playing on YouTube.com", "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "browser_action": { "default_title": "YouTube Play\/Pause with AdSkipper", "default_icon": "icon-2.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "ad_skipper.js" ], "run_at": "document_end" } ] } |