LASER CAT
IT'S A LASER CAT!
Was ist LASER CAT?
LASER CAT ist eine Chrome-Erweiterung, die von ben.purdy entwickelt wurde, und ihr Hauptmerkmal ist "IT'S A LASER CAT!".
Erweiterungsscreenshots
LASER CAT-Erweiterungs-CRX-Datei herunterladen
Laden Sie LASER CAT-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 is probably a laser cat extension so you can shoot laser cat lasers at things. NEW IN VERSION 22.18: - Welcome page is no longer opened upon install, latest Chrome updates seem to make this happen more than once (perhaps due to the very very bad decision that Google made in forcing everyone to be logged into Chrome all the time?). NEW IN VERSION 22.17: - Bug fix: Audio system shuts down after dismissing the laser cat. NEW IN VERSION 22.16: - Bug Fix: no more infinite laser if you drag out of the window. - Automatically displays a welcome page for new users to try out the laser cat (laser cat does not work on the chrome extensions page).
Grundlegende Informationen zur Erweiterung
Name | |
ID | fjhpfpjdamhdpcbpmoocjfadgkbohfpm |
Offizielle URL | https://chrome.google.com/webstore/detail/laser-cat/fjhpfpjdamhdpcbpmoocjfadgkbohfpm |
Beschreibung | IT'S A LASER CAT! |
Dateigröße | 411 KB |
Installationsanzahl | 60,000 |
Aktuelle Version | 22.18.1 |
Letztes Update | 2020-06-16 |
Veröffentlichungsdatum | 2020-06-16 |
Bewertung | 4.19/5 Insgesamt 223 Bewertungen |
Entwickler | ben.purdy |
Zahlungsart | free |
Erweiterungswebsite | http://www.benpurdy.com/laser-cat/ |
Hilfeseite URL | http://www.benpurdy.com/laser-cat/ |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "LASER CAT", "short_name": "LASER CAT", "description": "IT'S A LASER CAT!", "version": "22.18.1", "background": { "scripts": [ "js\/launcher.js" ] }, "browser_action": { "default_icon": { "128": "icons\/icon-128.png", "96": "icons\/icon-96.png", "64": "icons\/icon-64.png", "16": "icons\/icon-16.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/lasercat.js" ] } ], "icons": { "128": "icons\/icon-128.png", "96": "icons\/icon-96.png", "64": "icons\/icon-64.png", "16": "icons\/icon-16.png" }, "web_accessible_resources": [ "images\/cat-body.png", "images\/cat-head.png", "sounds\/laser-loop.mp3", "sounds\/laser-start.mp3", "sounds\/meow.mp3" ], "permissions": [ "activeTab", "*:\/\/*\/*" ] } |