Outliner

This extension outlines all the DOM elements on a page

Co to jest Outliner?

Outliner to rozszerzenie Chrome opracowane przez Zach Baker, a jego główną funkcją jest „This extension outlines all the DOM elements on a page”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Outliner

Pobierz pliki rozszerzeń Outliner 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

                        Exposes DOM element boundaries with dashed outlines.                    

Podstawowe informacje o rozszerzeniu

Nazwa Outliner Outliner
ID hmdacajmldpieoadpgloddgkeamdhoka
Oficjalny URL https://chromewebstore.google.com/detail/outliner/hmdacajmldpieoadpgloddgkeamdhoka
Opis This extension outlines all the DOM elements on a page
Rozmiar pliku 15.99 KB
Liczba instalacji 1,001
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2016-03-08
Data Publikacji 2016-03-07
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Zach Baker
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Outliner",
    "description": "This extension outlines all the DOM elements on a page",
    "version": "1.0.1",
    "icons": {
        "16": "icon.outliner.16.png",
        "48": "icon.outliner.48.png",
        "128": "icon.outliner.128.png"
    },
    "browser_action": {
        "default_icon": "icon.outliner.48.png",
        "default_title": "Add some purple outlines"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ]
}