Code Injector

Extension for JS & style injecting into the specified website.

Τι είναι το Code Injector;

Το Code Injector είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον martin.suba01, και η κύρια λειτουργία του είναι "Extension for JS & style injecting into the specified website.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Code Injector

Λήψη αρχείων επέκτασης Code Injector σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Tool for injecting custom JavaScript and CSS into website specified by domain. Uses Chrome storage sync API to store your scripts. You can create and edit your scripts in the tab UI of the extension which opens on extension icon click. There's jQuery support for JavaScript codes.

Features:
✔️ injects JS and CSS code into website specified by domain match
✔️ supports jQuery v3.4.1
✔️ tab UI for script management
✔️ simple code editor with JS/CSS text highlight                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Code Injector Code Injector
ID mmngbmmjfjannofkffhoindghfbhcool
Επίσημο URL https://chromewebstore.google.com/detail/code-injector/mmngbmmjfjannofkffhoindghfbhcool
Περιγραφή Extension for JS & style injecting into the specified website.
Μέγεθος Αρχείου 110 KB
Αριθμός Εγκαταστάσεων 1,016
Τρέχουσα Έκδοση 0.0.1
Τελευταία Ενημέρωση 2020-02-06
Ημερομηνία Δημοσίευσης 2020-02-06
Αξιολόγηση 3.30/5 Συνολικά 10 Αξιολογήσεις
Προγραμματιστής martin.suba01
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Code Injector",
    "description": "Extension for JS & style injecting into the specified website.",
    "version": "0.0.1",
    "author": "Martin Suba",
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "64": "icons\/icon64.png"
        },
        "default_title": "Open the Code Injector in tab"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "tabs",
        "storage",
        "activeTab",
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "content-script.js"
            ],
            "all_frames": false
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    }
}