Flixtras - Flixtor Extra Functionality
Extra functionality and tools for Flixtor. Project is on Github: https://github.com/dtgritman/Flixtras
Flixtras - Flixtor Extra Functionality란 무엇입니까?
Flixtras - Flixtor Extra Functionality은(는) dtgeverything에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extra functionality and tools for Flixtor. Project is on Github: https://github.com/dtgritman/Flixtras"입니다.
확장 프로그램 스크린샷
Flixtras - Flixtor Extra Functionality 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is a small project to add some extra functionality to Flixtor. Currently it only supports volume control with the scroll wheel when hovered over the video and displays a small overlay. Update 0.0.3: - Volume increments are now a dropdown menu - Overlay display can be disabled - Overlay position can be changed - Overlay opacity can be changed - Setting changes no longer require page refresh - More menu layout fixes - More restructuring of storage Update 0.0.2: - Added volume increment adjustment to menu - Fixed menu layout some - Restructured storage object for storing settings
확장 프로그램 기본 정보
이름 | Flixtras - Flixtor Extra Functionality |
ID | jigkighnoeljhnmfkemlcijgdfjhligf |
공식 URL | https://chromewebstore.google.com/detail/flixtras-flixtor-extra-fu/jigkighnoeljhnmfkemlcijgdfjhligf |
설명 | Extra functionality and tools for Flixtor. Project is on Github: https://github.com/dtgritman/Flixtras |
파일 크기 | 39.39 KB |
설치 횟수 | 28 |
현재 버전 | 0.0.3 |
최근 업데이트 | 2021-12-19 |
출시 날짜 | 2021-12-17 |
개발자 | dtgeverything |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/dtgritman/Flixtras |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Flixtras - Flixtor Extra Functionality", "version": "0.0.3", "icons": { "16": "\/images\/icon16.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" }, "description": "Extra functionality and tools for Flixtor. Project is on Github: https:\/\/github.com\/dtgritman\/Flixtras", "author": "Dustin Gritman", "manifest_version": 3, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/flixtor.to\/watch\/*", "https:\/\/flixtor.se\/watch\/*", "https:\/\/flixtor.vc\/watch\/*", "https:\/\/flixtor.nu\/watch\/*", "https:\/\/flixtor.sx\/watch\/*", "https:\/\/flixtor.tk\/watch\/*", "https:\/\/flixtor.cz\/watch\/*" ], "js": [ "jquery-3.6.0.slim.min.js", "content.js" ], "run_at": "document_end" } ], "action": { "default_popup": "popup.html" } } |