Chrome Quirks

A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage!

¿Qué es Chrome Quirks?

Chrome Quirks es una extensión de Chrome desarrollada por Paul Krishnamurthy, y su función principal es "A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage!".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Chrome Quirks

Descarga archivos de extensión Chrome Quirks 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

                        Chrome Quirks is a fun extension that allows you to inject pre-loaded effects or custom CSS onto any webpage you visit. Developers can quickly and easily edit CSS and test ideas out. This extension appeals to the curious and the pranksters who can't help messing with their less tech-savvy friends!

Feel free to kindly leave some ideas for more pre-loaded effects and improvements along with a good rating!

Enjoy this app and share it with your friends!
*Special thanks to Alex Xie for screenshots*                    

Información Básica de la Extensión

Nombre Chrome Quirks Chrome Quirks
ID bonaodplajkoeboaofhhjbigfhchpehc
URL Oficial https://chromewebstore.google.com/detail/chrome-quirks/bonaodplajkoeboaofhhjbigfhchpehc
Descripción A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage!
Tamaño del Archivo 1.2 MB
Cantidad de Instalaciones 102
Versión Actual 1.2
Última Actualización 2020-11-19
Fecha de Publicación 2015-05-21
Calificación 5.00/5 Total de 5 Calificaciones
Desarrollador Paul Krishnamurthy
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://paulkr.com/
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome Quirks",
    "short_name": "CQ",
    "manifest_version": 2,
    "version": "1.2",
    "description": "A fun extension that allows you to inject pre-loaded effects or custom CSS into any webpage!",
    "homepage_url": "http:\/\/paulkr.com\/",
    "icons": {
        "256": "icons\/icon256.png"
    },
    "background": {
        "scripts": [
            "jquery.js",
            "inject.js"
        ],
        "persistance": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_title": "Chrome Quirks",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "http:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}