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

Was ist PageMirror (build by Kuoll.com)?

PageMirror (build by Kuoll.com) ist eine Chrome-Erweiterung, die von http://kuoll.com entwickelt wurde, und ihr Hauptmerkmal ist "A Demonstration of miroring an entire document using DOM Mutation Observers and the Mutation Summary library. build by Kuoll.com".

Erweiterungsscreenshots

PageMirror (build by Kuoll.com)-Erweiterungs-CRX-Datei herunterladen

Laden Sie PageMirror (build by Kuoll.com)-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name PageMirror (build by Kuoll.com) PageMirror (build by Kuoll.com)
ID kefndlndbcgpbimijjjefolmglodjoda
Offizielle URL https://chrome.google.com/webstore/detail/pagemirror-build-by-kuoll/kefndlndbcgpbimijjjefolmglodjoda
Beschreibung A Demonstration of miroring an entire document using DOM Mutation Observers and the Mutation Summary library. build by Kuoll.com
Dateigröße 46.83 KB
Installationsanzahl 22
Aktuelle Version 2
Letztes Update 2016-07-12
Veröffentlichungsdatum 2016-07-12
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler http://kuoll.com
Zahlungsart free
Erweiterungswebsite http://www.kuoll.com/
Hilfeseite URL https://github.com/kuoll/pagemirror
Unterstützte Sprachen 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
    }
}