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