CSS Reloader (fixed)

CSS Reloader is a browser extension, that allows you to reload CSS without reloading the page itself.

Co to jest CSS Reloader (fixed)?

CSS Reloader (fixed) to rozszerzenie Chrome opracowane przez KhodeN, a jego główną funkcją jest „CSS Reloader is a browser extension, that allows you to reload CSS without reloading the page itself.”.

Pobierz plik CRX rozszerzenia CSS Reloader (fixed)

Pobierz pliki rozszerzeń CSS Reloader (fixed) w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This is fork of https://chrome.google.com/webstore/detail/css-reloader/dnfpcpfijpdhabaoieccoclghgplmpbd extension with fixed error. Works in current Chrome.                    

Podstawowe informacje o rozszerzeniu

Nazwa CSS Reloader (fixed) CSS Reloader (fixed)
ID fkbenfjedcbdpmkgbmbliahhmohamdlj
Oficjalny URL https://chrome.google.com/webstore/detail/css-reloader-fixed/fkbenfjedcbdpmkgbmbliahhmohamdlj
Opis CSS Reloader is a browser extension, that allows you to reload CSS without reloading the page itself.
Rozmiar pliku 85.38 KB
Liczba instalacji 304
Aktualna Wersja 1.1.2
Ostatnia Aktualizacja 2016-08-03
Data Publikacji 2016-08-03
Ocena 1.00/5 Łącznie 4 Oceny
Deweloper KhodeN
Typ Płatności free
Strona Rozszerzenia https://chrome.google.com/webstore/detail/css-reloader/dnfpcpfijpdhabaoieccoclghgplmpbd
Adres URL Strony Pomocy https://chrome.google.com/webstore/detail/css-reloader/dnfpcpfijpdhabaoieccoclghgplmpbd
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "background": {
        "page": "background.htm"
    },
    "content_scripts": [
        {
            "js": [
                "cssreloader.content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "description": "CSS Reloader is a browser extension, that allows you to reload CSS without reloading the page itself.",
    "icons": {
        "128": "icons\/icon_128.png",
        "16": "icons\/icon_16.png",
        "256": "icons\/icon_256.png",
        "48": "icons\/icon_48.png"
    },
    "name": "CSS Reloader (fixed)",
    "options_page": "options.htm",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "contextMenus",
        "tabs"
    ],
    "version": "1.1.2"
}