Floaty Boi
Unofficial Floatplane quality of life extension
Was ist Floaty Boi?
Floaty Boi ist eine Chrome-Erweiterung, die von Devvy Boi entwickelt wurde, und ihr Hauptmerkmal ist "Unofficial Floatplane quality of life extension".
Erweiterungsscreenshots
Floaty Boi-Erweiterungs-CRX-Datei herunterladen
Laden Sie Floaty Boi-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This addon enables some quality-of-life features on the streaming service Floatplane. These features include dark mode, video progress, and a simple watchlist, all stored locally on your browser. Not affiliated with or endorsed by Linus Media Group or Floatplane Inc.
Grundlegende Informationen zur Erweiterung
Name | Floaty Boi |
ID | fjcnijlonalklaiamjooajkkfnijcnjk |
Offizielle URL | https://chromewebstore.google.com/detail/floaty-boi/fjcnijlonalklaiamjooajkkfnijcnjk |
Beschreibung | Unofficial Floatplane quality of life extension |
Dateigröße | 156 KB |
Installationsanzahl | 47 |
Aktuelle Version | 0.0.5 |
Letztes Update | 2023-04-18 |
Veröffentlichungsdatum | 2023-03-31 |
Bewertung | 5.00/5 Insgesamt 5 Bewertungen |
Entwickler | Devvy Boi |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Floaty Boi", "version": "0.0.5", "description": "Unofficial Floatplane quality of life extension", "background": { "service_worker": "src\/background\/index.js", "type": "module" }, "permissions": [ "storage" ], "action": { "default_popup": "src\/action\/index.html", "default_icon": "assets\/icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.floatplane.com\/*" ], "js": [ "content-script.iife.js" ], "run_at": "document_start" } ], "icons": { "48": "assets\/icon.png", "96": "assets\/icon.png", "128": "assets\/icon.png" }, "web_accessible_resources": [ { "resources": [ "style.css", "content-script.iife.js.map", "src\/background\/index.js.map", "assets\/browser-polyfill-dd0fc74b.js", "assets\/icon-darkmode.svg", "assets\/icon-lightmode.svg", "assets\/icon.png", "assets\/index-1d9d1590.css", "assets\/welcome.html" ], "matches": [ "https:\/\/*.floatplane.com\/*" ] } ] } |