PageMirror (build by Kuoll.com)

A Demonstration of miroring an entire document using DOM Mutation Observers and the Mutation Summary library. build by Kuoll.com

Co to jest PageMirror (build by Kuoll.com)?

PageMirror (build by Kuoll.com) to rozszerzenie Chrome opracowane przez http://kuoll.com, a jego główną funkcją jest „A Demonstration of miroring an entire document using DOM Mutation Observers and the Mutation Summary library. build by Kuoll.com”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia PageMirror (build by Kuoll.com)

Pobierz pliki rozszerzeń PageMirror (build by Kuoll.com) 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

                        A Demonstration of miroring an entire document using DOM Mutation Observers and the Mutation Summary library. build by Kuoll.com. Investigate TreeMirrorClient, MutationSummary, MutationSaver library usage on real life example. 

Source code of the extension: https://github.com/kuoll/pagemirror

Thanks rafaelw for the original library. 
Check original source code here (not compiled into runnable solution):
https://github.com/rafaelw/mutation-summary                    

Podstawowe informacje o rozszerzeniu

Nazwa PageMirror (build by Kuoll.com) PageMirror (build by Kuoll.com)
ID kefndlndbcgpbimijjjefolmglodjoda
Oficjalny URL https://chrome.google.com/webstore/detail/pagemirror-build-by-kuoll/kefndlndbcgpbimijjjefolmglodjoda
Opis A Demonstration of miroring an entire document using DOM Mutation Observers and the Mutation Summary library. build by Kuoll.com
Rozmiar pliku 46.83 KB
Liczba instalacji 22
Aktualna Wersja 2
Ostatnia Aktualizacja 2016-07-12
Data Publikacji 2016-07-12
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper http://kuoll.com
Typ Płatności free
Strona Rozszerzenia http://www.kuoll.com/
Adres URL Strony Pomocy https://github.com/kuoll/pagemirror
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PageMirror (build by Kuoll.com)",
    "version": "2",
    "manifest_version": 2,
    "description": "A Demonstration of miroring an entire document using DOM Mutation Observers and the Mutation Summary library. build by Kuoll.com",
    "icons": {
        "128": "icon_128.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs"
    ],
    "homepage_url": "http:\/\/www.kuoll.com\/",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "mutation-summary.js",
                "tree-mirror.js",
                "content_script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon_128.png",
        "default_title": "PageMirror (build by Kuoll.com)"
    },
    "background": {
        "scripts": [
            "bg.js"
        ],
        "persistent": false
    }
}