Angular ScopeLogger

Right click and log the scope to the console

ما هو Angular ScopeLogger؟

Angular ScopeLogger هو إضافة Chrome تم تطويرها بواسطة Aakil Fernandes، والميزة الرئيسية لها هي "Right click and log the scope to the console".

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

screenshot

تحميل ملف CRX للإضافة Angular ScopeLogger

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

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

                                            

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

الاسم Angular ScopeLogger Angular ScopeLogger
ID lbfklacacfeehegkhklnoadciknkhlcb
عنوان URL الرسمي https://chrome.google.com/webstore/detail/angular-scopelogger/lbfklacacfeehegkhklnoadciknkhlcb
الوصف Right click and log the scope to the console
حجم الملف 40.71 KB
عدد التثبيتات 311
النسخة الحالية 1.0.0
آخر تحديث 2015-03-19
تاريخ النشر 2015-03-19
تقييم 5.00/5 مجموع تقييمات 3
المطور Aakil Fernandes
نوع الدفع free
موقع الإضافة http://aakilfernandes.github.io/angular-scopelogger/
عنوان صفحة المساعدة http://aakilfernandes.github.io/angular-scopelogger/
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Angular ScopeLogger",
    "description": "Right click and log the scope to the console",
    "version": "1.0.0",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "",
        "contextMenus"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "inject\/*",
        "processing.png",
        "icons\/*"
    ]
}