Inject Code

Inject different javascript or css code to every website, when you want

ما هو Inject Code؟

Inject Code هو إضافة Chrome تم تطويرها بواسطة max، والميزة الرئيسية لها هي "Inject different javascript or css code to every website, when you want".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Inject Code

قم بتنزيل ملفات الامتداد Inject Code بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Extension will remember all css/js code you injected in every website and auto-inject them when web page is loaded.

Features:
-  inject custom js/css to website
-  inject CDN links to website
- 38 most popular themes
- auto-inject code to site option ( after loaded page scripts will inject automatically)
- highlight syntax errors and warnings
- hot keys : 
* Ctrl+Enter - run code, 
* Ctrl+F - find in editor

For inject code to site:
- open browser devtools panel,
- go to  "Inject code" tab
- write code ( on typing code autosaving  )
- on right top corner set ckeckbox "Inject code", and after reload code will be injecting to page ( or press buttom Play for once execute code )                    

معلومات أساسية عن التمديد

الاسم Inject Code Inject Code
ID gpaakhhkcmlenabckmapmlfnajboobbi
عنوان URL الرسمي https://chromewebstore.google.com/detail/inject-code/gpaakhhkcmlenabckmapmlfnajboobbi
الوصف Inject different javascript or css code to every website, when you want
حجم الملف 2.96 MB
عدد التثبيتات 792
النسخة الحالية 0.91.21
آخر تحديث 2020-08-04
تاريخ النشر 2020-07-06
تقييم 4.00/5 مجموع تقييمات 6
المطور max
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Inject Code",
    "description": "Inject different javascript or css code to every website, when you want",
    "version": "0.91.21",
    "minimum_chrome_version": "16.0.884",
    "permissions": [
        "activeTab",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "devtools_page": "devtools.html",
    "manifest_version": 2
}