J CSS Reload

Simple CSS Reload utility

Cos'è J CSS Reload?

J CSS Reload è un'estensione di Chrome sviluppata da jslayer, e la sua funzione principale è "Simple CSS Reload utility".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione J CSS Reload

Scarica i file di estensione J CSS Reload in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Refresh your css files without realoding the page. Just simply click nice green refresh button or use shortcut.

Source: https://github.com/jslayer/css-reload

New in 1.2.5:

added: icon blinking on activate
added: command support (activate in "Keyboard shortcuts" at the bottom of chrome://extensions/ page).

New in 1.2.3:

added: fonts.googleapis.com into ignored list

New in 1.2:

Add experimental `@import url(...` support.

New in 1.1:

Several public CDN hosts are now ignored while refreshing:

 - yui.yahooapis.com
 - ajax.googleapis.com
 - ajax.aspnetcdn.com
 - ajax.microsoft.com
 - code.jquery.com                    

Informazioni di Base sull'Estensione

Nome J CSS Reload J CSS Reload
ID nnmebjmgdonemncjdliomljdfhpnlekk
URL Ufficiale https://chromewebstore.google.com/detail/j-css-reload/nnmebjmgdonemncjdliomljdfhpnlekk
Descrizione Simple CSS Reload utility
Dimensione del File 15.8 KB
Conteggio Installazioni 4,214
Versione Corrente 1.2.5
Ultimo Aggiornamento 2013-11-25
Data di Pubblicazione 2013-11-25
Valutazione 4.50/5 Totale 52 Valutazioni
Sviluppatore jslayer
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/jslayer/css-reload
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "1.2.5",
    "manifest_version": 2,
    "default_locale": "en",
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "tabs",
        ""
    ],
    "page_action": {
        "default_title": "__MSG_pageActionTitle__",
        "default_icon": "icon-48.png"
    },
    "icons": {
        "19": "icon-48.png",
        "48": "icon-48.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+E",
                "mac": "Command+E"
            },
            "description": "CSS Reload"
        }
    }
}