Angular ScopeLogger

Right click and log the scope to the console

What is Angular ScopeLogger?

Angular ScopeLogger is a Chrome extension developed by Aakil Fernandes, and its main feature is "Right click and log the scope to the console".

Extension Screenshots

screenshot

Download Angular ScopeLogger Extension CRX File

Download Angular ScopeLogger extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                                            

Extension Basic Information

Name Angular ScopeLogger Angular ScopeLogger
ID lbfklacacfeehegkhklnoadciknkhlcb
Official URL https://chrome.google.com/webstore/detail/angular-scopelogger/lbfklacacfeehegkhklnoadciknkhlcb
Description Right click and log the scope to the console
File Size 40.71 KB
Installation Count 311
Current Version 1.0.0
Last Updated 2015-03-19
Publish Date 2015-03-19
Rating 5.00/5 Total 3 Ratings
Developer Aakil Fernandes
Payment Type free
Extension Website http://aakilfernandes.github.io/angular-scopelogger/
Help Page URL http://aakilfernandes.github.io/angular-scopelogger/
Supported Languages 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\/*"
    ]
}