Sites custom codes - inject CSS and JS

Simple tool to inject your CSS and JS codes in sites

Sites custom codes - inject CSS and JS क्या है?

Sites custom codes - inject CSS and JS Somonator द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple tool to inject your CSS and JS codes in sites"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Sites custom codes - inject CSS and JS एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Sites custom codes - inject CSS and JS Sites custom codes - inject CSS and JS
ID ogojpgiamblcmpgombckcpfnaighgagd
आधिकारिक URL https://chromewebstore.google.com/detail/sites-custom-codes-inject/ogojpgiamblcmpgombckcpfnaighgagd
विवरण Simple tool to inject your CSS and JS codes in sites
फ़ाइल का आकार 403 KB
स्थापना संख्या 198
वर्तमान संस्करण 0.4
अंतिम अपडेट 2021-11-23
प्रकाशन तिथि 2021-11-15
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Somonator
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://vk.com/doc-200312453_585455412
समर्थित भाषाएँ 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"
            ]
        }
    ]
}