Rotate that Video Player
The ability to rotate a video clip by 90, 180 or 270 degrees.
Rotate that Video Player란 무엇입니까?
Rotate that Video Player은(는) https://www.stefanvd.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The ability to rotate a video clip by 90, 180 or 270 degrees."입니다.
확장 프로그램 스크린샷
Rotate that Video Player 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Thanks to this Chrome extension you can finally fix the know VSS problem, that you see sometime on YouTube™ videos. It's finally here, the "Rotate that Video Player": ✓ Easy rotate the video player on YouTube, thanks to the slider ✓ Move the movie player more with an extra slider Never heard of the Vertical Video Syndrome (VVS)? Vertical Video Syndrome (VVS) is a fictitious disease which satirically claims that those afflicted can only shoot videos in a portrait orientation, as opposed to the more viewer-friendly landscape mode. See also this most popular browser extension: Turn Off the Lights https://chrome.google.com/webstore/detail/turn-off-the-lights/bfbmjmiodbnnpllbbbfblcplfjjepjdn
확장 프로그램 기본 정보
이름 | Rotate that Video Player |
ID | ijpcmpbcokpgmecfkmehleemljfkeimo |
공식 URL | https://chromewebstore.google.com/detail/rotate-that-video-player/ijpcmpbcokpgmecfkmehleemljfkeimo |
설명 | The ability to rotate a video clip by 90, 180 or 270 degrees. |
파일 크기 | 65.08 KB |
설치 횟수 | 43,300 |
현재 버전 | 0.0.0.3 |
최근 업데이트 | 2022-03-03 |
출시 날짜 | 2013-09-14 |
평점 | 3.73/5 총 104 개의 평점 |
개발자 | https://www.stefanvd.net |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.stefanvd.net |
도움말 페이지 URL | https://www.stefanvd.net/support/ |
개인정보 보호 정책 페이지 URL | https://www.stefanvd.net/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_name__", "short_name": "Rotate that Video Player", "homepage_url": "https:\/\/www.stefanvd.net\/support\/", "version": "0.0.0.3", "description": "__MSG_description__", "author": "Stefan vd", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "browser_action": { "default_icon": "icons\/icon1.png", "default_title": "__MSG_pageatitle__", "default_popup": "popup.html" }, "background": { "page": "background.html", "persistent": false }, "content_security_policy": "default-src 'none'; script-src 'self'; img-src *; object-src 'none'", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js" ], "run_at": "document_idle" } ], "minimum_chrome_version": "18", "offline_enabled": true, "permissions": [ "activeTab" ] } |