ng-detector

Detects AngularJS apps as you browse.

Co to jest ng-detector?

ng-detector to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Detects AngularJS apps as you browse.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia ng-detector

Pobierz pliki rozszerzeń ng-detector w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Adds a small AngularJS icon into the address bar when you come across a page that is built using AngularJS.

Mouse over the icon to see the Angular version info.                    

Podstawowe informacje o rozszerzeniu

Nazwa ng-detector ng-detector
ID fedicaemhcfcmelihceehhaodggfeffm
Oficjalny URL https://chromewebstore.google.com/detail/ng-detector/fedicaemhcfcmelihceehhaodggfeffm
Opis Detects AngularJS apps as you browse.
Rozmiar pliku 105 KB
Liczba instalacji 1,682
Aktualna Wersja 1.2.1
Ostatnia Aktualizacja 2014-10-17
Data Publikacji 2014-10-17
Ocena 4.68/5 Łącznie 19 Oceny
Deweloper Unknown
Typ Płatności free
Strona Rozszerzenia https://github.com/IgorMinar/ng-detector
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ng-detector",
    "description": "Detects AngularJS apps as you browse.",
    "author": "Igor Minar",
    "version": "1.2.1",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "AngularJS Super-Powered"
    },
    "web_accessible_resources": [
        "inject.js"
    ]
}