Star-rules

Apply CSS rules to all elements on the page

¿Qué es Star-rules?

Star-rules es una extensión de Chrome desarrollada por https://chaitanyapramod.com, y su función principal es "Apply CSS rules to all elements on the page".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Star-rules

Descarga archivos de extensión Star-rules 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

                        Applies CSS transition on all elements in the current page. All transitions on the page smoothly animate between values.

To try this out, open http://css-tricks.com/things-it-might-be-funuseful-to-try-the-universal-selector-on/ in Chrome browser and click on the star icon in the toolbar. Howering over the links in the article smoothly change their background.

The source-code of this project is hosted at https://github.com/chaitanyapramod/Star-rules                    

Información Básica de la Extensión

Nombre Star-rules Star-rules
ID keoloppemkcfmkhccfdjhijediepcaip
URL Oficial https://chromewebstore.google.com/detail/star-rules/keoloppemkcfmkhccfdjhijediepcaip
Descripción Apply CSS rules to all elements on the page
Tamaño del Archivo 61 KB
Cantidad de Instalaciones 16
Versión Actual 0.0.3
Última Actualización 2018-02-25
Fecha de Publicación 2018-02-25
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador https://chaitanyapramod.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://chaitanyapramod.com/
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Star-rules",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "Apply CSS rules to all elements on the page",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/star_orange_32.png",
        "default_title": "Toggle CSS transition on '*' selector"
    },
    "icons": {
        "256": "images\/star_orange_256.png",
        "128": "images\/star_orange_128.png",
        "64": "images\/star_orange_64.png",
        "48": "images\/star_orange_48.png",
        "32": "images\/star_orange_32.png",
        "16": "images\/star_orange_16.png"
    },
    "permissions": [
        "",
        "tabs",
        "contextMenus"
    ]
}