Sites custom codes - inject CSS and JS

Simple tool to inject your CSS and JS codes in sites

Cos'è Sites custom codes - inject CSS and JS?

Sites custom codes - inject CSS and JS è un'estensione di Chrome sviluppata da Somonator, e la sua funzione principale è "Simple tool to inject your CSS and JS codes in sites".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Sites custom codes - inject CSS and JS

Scarica i file di estensione Sites custom codes - inject CSS and JS 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

                        I created this tool for myself, but still decided to publish it. Its goal is to easily embed your own CSS and JS codes into websites.

I don't like the way some sites look or work. For example, the video player window is too small or the light theme burns my eyes at night. Well, sometimes, I may need a tool to automate something on the site.

The extension is intended to solve this problem.


Main features:
Simple script management from admin panel
Ability to use remote files
Run based of patterns URL (chrome extension inject api) or manually from popup
Convenient code editor based on CodeMirror
Import / Export scripts from json                    

Informazioni di Base sull'Estensione

Nome Sites custom codes - inject CSS and JS Sites custom codes - inject CSS and JS
ID ogojpgiamblcmpgombckcpfnaighgagd
URL Ufficiale https://chromewebstore.google.com/detail/sites-custom-codes-inject/ogojpgiamblcmpgombckcpfnaighgagd
Descrizione Simple tool to inject your CSS and JS codes in sites
Dimensione del File 403 KB
Conteggio Installazioni 198
Versione Corrente 0.4
Ultimo Aggiornamento 2021-11-23
Data di Pubblicazione 2021-11-15
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Somonator
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://vk.com/doc-200312453_585455412
Lingue Supportate en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extension_name__",
    "description": "__MSG_extension_description__",
    "author": "Somonator",
    "version": "0.4",
    "default_locale": "en",
    "manifest_version": 2,
    "minimum_chrome_version": "55.0",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage",
        ""
    ],
    "options_page": "options-page.html",
    "browser_action": {
        "default_icon": {
            "19": "icon.png",
            "38": "icon.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "extension\/api.js",
            "extension\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "js": [
                "extension\/inject-scripts.js",
                "extension\/content.js"
            ]
        }
    ]
}