Angular ScopeLogger

Right click and log the scope to the console

什么是Angular ScopeLogger?

Angular ScopeLogger是由Aakil Fernandes开发的Chrome扩展程序,该扩展的主要功能是“Right click and log the scope to the console”。

扩展截图

screenshot

下载Angular ScopeLogger扩展crx文件

下载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\/*"
    ]
}