Web Code Injector

Add your own code (HTML, CSS, JS) to your favourite websites. A simple fast way to improve :) your favourite websites.

Co to jest Web Code Injector?

Web Code Injector to rozszerzenie Chrome opracowane przez Jon Ander Echeverria Sanchez, a jego główną funkcją jest „Add your own code (HTML, CSS, JS) to your favourite websites. A simple fast way to improve :) your favourite websites.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Web Code Injector

Pobierz pliki rozszerzeń Web Code 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

                        Add your own code (HTML, CSS, JS) to your favourite websites. You have 3 different ways to work, from the popup in the top icon, from a browser tab or from the development tools (Ctrl + Shift + I or F12)                    

Podstawowe informacje o rozszerzeniu

Nazwa Web Code Injector Web Code Injector
ID gffmljieoedhigbaagdjoipecmbiifkf
Oficjalny URL https://chromewebstore.google.com/detail/web-code-injector/gffmljieoedhigbaagdjoipecmbiifkf
Opis Add your own code (HTML, CSS, JS) to your favourite websites. A simple fast way to improve :) your favourite websites.
Rozmiar pliku 2.36 MB
Liczba instalacji 1,130
Aktualna Wersja 3.0.2
Ostatnia Aktualizacja 2022-05-26
Data Publikacji 2019-09-12
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper Jon Ander Echeverria Sanchez
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": "Web Code Injector",
    "description": "Add your own code (HTML, CSS, JS) to your favourite websites. A simple fast way to improve :) your favourite websites.",
    "manifest_version": 2,
    "version": "3.0.2",
    "short_name": "WCI",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "cs.js"
            ]
        }
    ],
    "devtools_page": "devBg.html",
    "browser_action": {
        "default_title": "Web Code Injector",
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "downloads",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}