Fishtank+
Want a better experience on fishtank.live? Here is what the extension has to offer: -Chat collapsing -Fullscreen button -Keyboard…
Was ist Fishtank+?
Fishtank+ ist eine Chrome-Erweiterung, die von [email protected] entwickelt wurde, und ihr Hauptmerkmal ist "Want a better experience on fishtank.live? Here is what the extension has to offer: -Chat collapsing -Fullscreen button -Keyboard…".
Erweiterungsscreenshots
Fishtank+-Erweiterungs-CRX-Datei herunterladen
Laden Sie Fishtank+-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
Want a better experience on fishtank.live?
Here is what the extension has to offer:
-Chat collapsing
-Fullscreen button
-Keyboard camera navigation with numbers and arrows
-Season pass toast auto dismiss
This greatly improves the experience on fishtank. This wouldn't be possible without BowDown097 on github! Grundlegende Informationen zur Erweiterung
| Name | |
| ID | bjfenobcgjbjnkjmckhhdhddcpagnaka |
| Offizielle URL | https://chromewebstore.google.com/detail/fishtank+/bjfenobcgjbjnkjmckhhdhddcpagnaka |
| Beschreibung | Want a better experience on fishtank.live? Here is what the extension has to offer: -Chat collapsing -Fullscreen button -Keyboard… |
| Dateigröße | 19.52 KB |
| Installationsanzahl | 36 |
| Aktuelle Version | 1.3 |
| Letztes Update | 2023-05-17 |
| Veröffentlichungsdatum | 2023-05-16 |
| Entwickler | [email protected] |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Fishtank+",
"version": "1.3",
"permissions": [
"scripting",
"activeTab",
"http:\/\/www.fishtank.live\/*",
"https:\/\/www.fishtank.live\/*"
],
"host_permissions": [
"http:\/\/www.fishtank.live\/*",
"https:\/\/www.fishtank.live\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
},
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/www.fishtank.live\/*",
"https:\/\/www.fishtank.live\/*"
],
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"libs\/arrive.js",
"libs\/keycode.js"
],
"matches": [
"http:\/\/www.fishtank.live\/*",
"https:\/\/www.fishtank.live\/*"
]
}
]
} | |