Floaty Boi
Unofficial Floatplane quality of life extension
What is Floaty Boi?
Floaty Boi is a Chrome extension developed by Devvy Boi, and its main feature is "Unofficial Floatplane quality of life extension".
Extension Screenshots
Download Floaty Boi Extension CRX File
Download Floaty Boi extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Floaty Boi |
ID | fjcnijlonalklaiamjooajkkfnijcnjk |
Official URL | https://chromewebstore.google.com/detail/floaty-boi/fjcnijlonalklaiamjooajkkfnijcnjk |
Description | Unofficial Floatplane quality of life extension |
File Size | 156 KB |
Installation Count | 47 |
Current Version | 0.0.5 |
Last Updated | 2023-04-18 |
Publish Date | 2023-03-31 |
Rating | 5.00/5 Total 5 Ratings |
Developer | Devvy Boi |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/*" ] } ] } |