Angular ScopeLogger

Right click and log the scope to the console

Wat is Angular ScopeLogger?

Angular ScopeLogger is een Chrome-extensie ontwikkeld door Aakil Fernandes, en de belangrijkste functie is "Right click and log the scope to the console".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Angular ScopeLogger

Download Angular ScopeLogger-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                                            

Basisinformatie over de Extensie

Naam Angular ScopeLogger Angular ScopeLogger
ID lbfklacacfeehegkhklnoadciknkhlcb
Officiële URL https://chrome.google.com/webstore/detail/angular-scopelogger/lbfklacacfeehegkhklnoadciknkhlcb
Beschrijving Right click and log the scope to the console
Bestandsgrootte 40.71 KB
Aantal Installaties 311
Huidige Versie 1.0.0
Laatst Bijgewerkt 2015-03-19
Publicatiedatum 2015-03-19
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar Aakil Fernandes
Betalingswijze free
Extensiewebsite http://aakilfernandes.github.io/angular-scopelogger/
Help Pagina-URL http://aakilfernandes.github.io/angular-scopelogger/
Ondersteunde Talen 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\/*"
    ]
}