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