Angular ScopeLogger

Right click and log the scope to the console

Angular ScopeLogger क्या है?

Angular ScopeLogger Aakil Fernandes द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Right click and log the scope to the console"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Angular ScopeLogger एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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/
सहायता पृष्ठ 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\/*"
    ]
}