Crowwwww
A judgmental crow for your browser
¿Qué es Crowwwww?
Crowwwww es una extensión de Chrome desarrollada por davidmaamoaix, y su función principal es "A judgmental crow for your browser".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Crowwwww
Descarga archivos de extensión Crowwwww en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
The one and only Crow of Judgment, now in your Chrome to judge your life choices. Crowwwww is a Chrome plugin that keeps you from getting distracted by irrelevant websites during your work. Whenever you look at random websites such as Facebook or YouTube, a judgmental crow will appear to stare at you in the eye, forcing you to reconsider your life decisions and go back to work. Settings: - Appear Frequency (seconds): How frequent the crow should appear to judge you. - Stay Duration (seconds): How long the crow should stay each time. Set to -1 for infinite duration. - Crow Size: Crows come in all sizes. Select a crow size in the drop-down menu. - Site List: A list of (work-irrelevant/entertainment) sites on which the crow should appear to remind you to get back to work. Settings are updated after refreshing the page.
Información Básica de la Extensión
Nombre | |
ID | ijnloopngpeiofbploocgggghjocpgol |
URL Oficial | https://chromewebstore.google.com/detail/crowwwww/ijnloopngpeiofbploocgggghjocpgol |
Descripción | A judgmental crow for your browser |
Tamaño del Archivo | 150 KB |
Cantidad de Instalaciones | 47 |
Versión Actual | 1.0.0 |
Última Actualización | 2021-06-10 |
Fecha de Publicación | 2021-06-09 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | davidmaamoaix |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/davidmaamoaix/crowwwww |
URL de la Página de Ayuda | https://github.com/davidmaamoaix/crowwwww/issues |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Crowwwww", "description": "A judgmental crow for your browser", "version": "1.0.0", "manifest_version": 3, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "page_load.js" ] } ], "permissions": [ "storage" ], "action": { "default_popup": "options.html", "default_icon": { "16": "\/images\/crow_icon.png", "32": "\/images\/crow_icon.png", "64": "\/images\/crow_icon.png", "128": "\/images\/crow_icon.png" } }, "icons": { "16": "\/images\/crow_icon.png", "32": "\/images\/crow_icon.png", "64": "\/images\/crow_icon.png", "128": "\/images\/crow_icon.png" }, "web_accessible_resources": [ { "resources": [ "crows\/crow.jpg", "crows\/crow_hd.jpg" ], "matches": [ "*:\/\/*\/*" ] } ] } |