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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                                            

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ 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/
URL หน้าช่วยเหลือ 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\/*"
    ]
}