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文件
下載Flixtras - Flixtor Extra Functionality擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 擴展基本資訊
| 名稱 | |
| ID | jigkighnoeljhnmfkemlcijgdfjhligf |
| 官方網址 | 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"
}
} | |