Run Your JavaScript

An empty extension, you run your own JavaScript in it.

ما هو Run Your JavaScript؟

Run Your JavaScript هو إضافة Chrome تم تطويرها بواسطة manecocomph، والميزة الرئيسية لها هي "An empty extension, you run your own JavaScript in it.".

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

screenshot

تحميل ملف CRX للإضافة Run Your JavaScript

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

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

                        An empty extension, you can run your own JavaScript in it with below advantages:
1) use chrome's proxy and cookies;
2) access all URLs, restful APIs without Cross-Origin Resource Sharing  issue;

it contains JQuery, JQuery-Dateformat and bootstrap in it. 

more info: http://www.tianxiaohui.com/index.php/search/Runyourjavascript/                    

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

الاسم Run Your JavaScript Run Your JavaScript
ID aiokpplkfhfbijcmbpgpbomigegncfab
عنوان URL الرسمي https://chrome.google.com/webstore/detail/run-your-javascript/aiokpplkfhfbijcmbpgpbomigegncfab
الوصف An empty extension, you run your own JavaScript in it.
حجم الملف 196 KB
عدد التثبيتات 841
النسخة الحالية 0.3.3
آخر تحديث 2020-09-06
تاريخ النشر 2018-03-26
المطور manecocomph
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة http://www.tianxiaohui.com/index.php/archives/315/
عنوان صفحة المساعدة http://www.tianxiaohui.com/index.php/archives/315/
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Run Your JavaScript",
    "description": "An empty extension, you run your own JavaScript in it.",
    "version": "0.3.3",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "*:\/\/*\/*",
        "storage",
        "tabs",
        "notifications",
        "downloads",
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "Run Your JavaScript",
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}