Angular ScopeLogger

Right click and log the scope to the console

Vad är Angular ScopeLogger?

Angular ScopeLogger är en Chrome-tillägg utvecklad av Aakil Fernandes, och dess huvudfunktion är "Right click and log the scope to the console".

Tilläggsskärmbilder

screenshot

Ladda ner Angular ScopeLogger-förlängningens CRX-fil

Ladda ner Angular ScopeLogger-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                                            

Grundläggande Information om Tillägg

Namn Angular ScopeLogger Angular ScopeLogger
ID lbfklacacfeehegkhklnoadciknkhlcb
Officiell webbadress https://chrome.google.com/webstore/detail/angular-scopelogger/lbfklacacfeehegkhklnoadciknkhlcb
Beskrivning Right click and log the scope to the console
Filstorlek 40.71 KB
Antal Installationer 311
Aktuell Version 1.0.0
Senast Uppdaterad 2015-03-19
Publiceringsdatum 2015-03-19
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare Aakil Fernandes
Betalningssätt free
Tilläggswebbplats http://aakilfernandes.github.io/angular-scopelogger/
Hjälpsida URL http://aakilfernandes.github.io/angular-scopelogger/
Stödda Språk 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\/*"
    ]
}