CustomCSS Injector

Write any CSS rules for any websites

Co to jest CustomCSS Injector?

CustomCSS Injector to rozszerzenie Chrome opracowane przez Bryce, a jego główną funkcją jest „Write any CSS rules for any websites”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia CustomCSS Injector

Pobierz pliki rozszerzeń CustomCSS Injector 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

                        Originally developed as an Add-On for FireFox, Custom CSS Injector lets you write any CSS rules and apply them to any website you like. Change colours, backgrounds, resize and hide obtrusive elements. Anything you can do within the power of CSS!
Simply write the CSS you want to apply in the provided text field and click 'Save' (NO page refresh required!). Apply the CSS to the URL, Domain or Globally by using the radio buttons provided. There is also a whitelist/blacklist functionality to govern which websites you'd like to apply the CSS to.
Enjoy syntax highlighting and line numbers for code readability (Thanks to PrismJS!)                    

Podstawowe informacje o rozszerzeniu

Nazwa CustomCSS Injector CustomCSS Injector
ID eknfhefneldkoocaeokkapahblmodika
Oficjalny URL https://chrome.google.com/webstore/detail/customcss-injector/eknfhefneldkoocaeokkapahblmodika
Opis Write any CSS rules for any websites
Rozmiar pliku 37.96 KB
Liczba instalacji 95
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2020-03-02
Data Publikacji 2020-03-02
Ocena 2.50/5 Łącznie 2 Oceny
Deweloper Bryce
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CustomCSS Injector",
    "short_name": "CSS Injector",
    "version": "1.0",
    "description": "Write any CSS rules for any websites",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/CCSSI_icon_v2_48.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "",
        "contextMenus",
        "notifications"
    ],
    "browser_action": {
        "browser_style": true,
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "48": "icons\/CCSSI_icon_v2_48.png",
            "96": "icons\/CCSSI_icon_v2_96.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "customcss.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        }
    ]
}