Better Tumblr Video
Replaces Tumblr's video player (that lacks volume control) with a player with a volume bar.
Better Tumblr Video란 무엇입니까?
Better Tumblr Video은(는) jtank4 Better-Tumblr-Video Dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replaces Tumblr's video player (that lacks volume control) with a player with a volume bar."입니다.
확장 프로그램 스크린샷
Better Tumblr Video 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Find the source code at https://github.com/jtank4/Better-Tumblr-Video Replaces Tumblr's video player (that lacks volume control) with the Plyr (https://plyr.io/) video player (with volume control) or Chrome's video player (user's choice). Select your video player by left clicking on the Better-Tumblr-Video icon in the top right corner of Chrome. Caveats: Doesn't work on all pages. Some pages of tumblr, like the search page and certain user pages (depends on theme), are completely ensconced in an iframe, which prevents the extension from seeing any videos on the page. Needs permissions: Storage - to store your preferred default video volume. Change log: https://github.com/jtank4/Better-Tumblr-Video/commits/master
확장 프로그램 기본 정보
이름 | Better Tumblr Video |
ID | apnnlkobibgdkakehkkgnmfinenhjddh |
공식 URL | https://chromewebstore.google.com/detail/better-tumblr-video/apnnlkobibgdkakehkkgnmfinenhjddh |
설명 | Replaces Tumblr's video player (that lacks volume control) with a player with a volume bar. |
파일 크기 | 43.01 KB |
설치 횟수 | 972 |
현재 버전 | 0.108 |
최근 업데이트 | 2018-09-24 |
출시 날짜 | 2018-09-23 |
평점 | 4.39/5 총 23 개의 평점 |
개발자 | jtank4 Better-Tumblr-Video Dev |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Better Tumblr Video", "description": "Replaces Tumblr's video player (that lacks volume control) with a player with a volume bar.", "version": "0.108", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.tumblr.com\/*" ], "css": [ "vid.css", "plyr\/plyr.css" ], "js": [ "content.js", "plyr\/plyr.min.js" ], "run_at": "document_end" } ], "permissions": [ "storage" ] } |