Chrome-REPL

Chrome REPL

ما هو Chrome-REPL؟

Chrome-REPL هو إضافة Chrome تم تطويرها بواسطة http://blog.diniscruz.com، والميزة الرئيسية لها هي "Chrome REPL".

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

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Chrome-REPL

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

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

                        Simple REPL that exposes the chrome extension objects.

Great for quickly scripting website's contents or to learn the Chrome extension APIs

For more install and usage details see this blog post: http://blog.diniscruz.com/2014/11/chrome-repl-first-o2-platform-chrome.html                    

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

الاسم Chrome-REPL Chrome-REPL
ID ojmdmeehmpkpkkhbifimekflgmnmeihg
عنوان URL الرسمي https://chrome.google.com/webstore/detail/chrome-repl/ojmdmeehmpkpkkhbifimekflgmnmeihg
الوصف Chrome REPL
حجم الملف 2.32 MB
عدد التثبيتات 85
النسخة الحالية 0.0.9
آخر تحديث 2014-11-21
تاريخ النشر 2014-11-21
تقييم 3.00/5 مجموع تقييمات 2
المطور http://blog.diniscruz.com
نوع الدفع free
موقع الإضافة https://github.com/o2platform/chrome-repl
عنوان صفحة المساعدة https://github.com/o2platform/chrome-repl/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome-REPL",
    "version": "0.0.9",
    "manifest_version": 2,
    "description": "Chrome REPL",
    "icons": {
        "16": "images\/exec.png",
        "128": "images\/exec.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/helpers\/storage.helper.js",
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/exec.png",
            "38": "images\/exec.png"
        },
        "default_title": "Chrome REPL",
        "default_popup": "options.html"
    },
    "devtools_page": "devtools.html",
    "options_page": "options.html",
    "omnibox": {
        "keyword": "Chrome REPL"
    },
    "permissions": [
        "tabs",
        "notifications",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}