Javascript injection

Inject external js files into a page in order to extend or modify functionality

ما هو Javascript injection؟

Javascript injection هو إضافة Chrome تم تطويرها بواسطة [email protected]، والميزة الرئيسية لها هي "Inject external js files into a page in order to extend or modify functionality".

تحميل ملف CRX للإضافة Javascript injection

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

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

                                            

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

الاسم Javascript injection Javascript injection
ID anblbolcglfjebndjmgnelligobpebpf
عنوان URL الرسمي https://chrome.google.com/webstore/detail/javascript-injection/anblbolcglfjebndjmgnelligobpebpf
الوصف Inject external js files into a page in order to extend or modify functionality
حجم الملف 25.78 KB
عدد التثبيتات 77
النسخة الحالية 1.0
آخر تحديث 2015-08-08
تاريخ النشر 2015-08-08
تقييم 5.00/5 مجموع تقييمات 1
المطور [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Javascript injection",
    "version": "1.0",
    "description": "Inject external js files into a page in order to extend or modify functionality",
    "browser_action": {
        "default_title": "Javascript injection",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2,
    "icons": {
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "js": [
                "contentscript.js"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "*:\/\/*\/*",
        "tabs"
    ],
    "content_security_policy": "script-src 'self' https:\/\/*.googleapis.com; object-src 'self'"
}