Inject JS

This extension will inject javascript from a URL into the current webpage

ما هو Inject JS؟

Inject JS هو إضافة Chrome تم تطويرها بواسطة dailenspencer12، والميزة الرئيسية لها هي "This extension will inject javascript from a URL into the current webpage".

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

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

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

                                            

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

الاسم Inject JS Inject JS
ID ppbefedgpemhmbmiehiodeobnoekdhfo
عنوان URL الرسمي https://chrome.google.com/webstore/detail/inject-js/ppbefedgpemhmbmiehiodeobnoekdhfo
الوصف This extension will inject javascript from a URL into the current webpage
حجم الملف 40.14 KB
عدد التثبيتات 80
النسخة الحالية 1.1
آخر تحديث 2016-09-29
تاريخ النشر 2016-09-29
المطور dailenspencer12
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Inject JS",
    "description": "This extension will inject javascript from a URL into the current webpage",
    "version": "1.1",
    "browser_action": {
        "default_icon": "rocket.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.google.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.min.js",
                "popup.js"
            ]
        }
    ],
    "icons": {
        "128": "rocket128.png"
    },
    "permissions": [
        "activeTab"
    ]
}