ScrewMyCode.in: Pitch control for YouTube
Slow down and speed up videos directly on YouTube like you would on a turntable.
ScrewMyCode.in: Pitch control for YouTube란 무엇입니까?
ScrewMyCode.in: Pitch control for YouTube은(는) Bamdad에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Slow down and speed up videos directly on YouTube like you would on a turntable."입니다.
확장 프로그램 스크린샷
ScrewMyCode.in: Pitch control for YouTube 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
## 📖 Description Slow down and speed up videos directly on YouTube like you would on a turntable. ### ⚙️ Use either - Popup settings - Embedded controls ### 📣 Share to - Users of the extension with the dynamic YouTube URL - Other users through the dedicated website ScrewMyCode.in
확장 프로그램 기본 정보
이름 | ScrewMyCode.in: Pitch control for YouTube |
ID | lnoedjelpkmhegefhhjljmggjdicnbaa |
공식 URL | https://chromewebstore.google.com/detail/screwmycodein-pitch-contr/lnoedjelpkmhegefhhjljmggjdicnbaa |
설명 | Slow down and speed up videos directly on YouTube like you would on a turntable. |
파일 크기 | 177 KB |
설치 횟수 | 377 |
현재 버전 | 2.4.0 |
최근 업데이트 | 2022-08-06 |
출시 날짜 | 2022-02-23 |
평점 | 4.33/5 총 6 개의 평점 |
개발자 | Bamdad |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/bamdadsabbagh/screwmycode-in--extension |
도움말 페이지 URL | https://github.com/bamdadsabbagh/screwmycode-in--extension/issues |
개인정보 보호 정책 페이지 URL | https://github.com/bamdadsabbagh/bamdadsabbagh/wiki/Privacy-Policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "2.4.0", "name": "ScrewMyCode.in: Pitch control for YouTube", "short_name": "ScrewMyCode.in", "description": "Slow down and speed up videos directly on YouTube like you would on a turntable.", "icons": { "128": "assets\/icon-128.png" }, "action": { "default_icon": { "128": "assets\/icon-128.png" }, "default_title": "ScrewMyCode.in", "default_popup": "popup\/index.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "scripts\/content.js" ], "run_at": "document_start", "all_frames": false } ], "permissions": [ "storage", "tabs" ] } |