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

Hvad er PageMirror (build by Kuoll.com)?

PageMirror (build by Kuoll.com) er en Chrome-udvidelse udviklet af http://kuoll.com, og dens hovedfunktion er "A Demonstration of miroring an entire document using DOM Mutation Observers and the Mutation Summary library. build by Kuoll.com".

Udvidelsesskærmbilleder

Download PageMirror (build by Kuoll.com)-udvidelses-CRX-fil

Download PageMirror (build by Kuoll.com)-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn PageMirror (build by Kuoll.com) PageMirror (build by Kuoll.com)
ID kefndlndbcgpbimijjjefolmglodjoda
Officiel URL https://chrome.google.com/webstore/detail/pagemirror-build-by-kuoll/kefndlndbcgpbimijjjefolmglodjoda
Beskrivelse A Demonstration of miroring an entire document using DOM Mutation Observers and the Mutation Summary library. build by Kuoll.com
Filstørrelse 46.83 KB
Antal Installationer 22
Nuværende Version 2
Senest Opdateret 2016-07-12
Udgivelsesdato 2016-07-12
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler http://kuoll.com
Betalingsmetode free
Udvidelseswebsted http://www.kuoll.com/
Hjælpeside-URL https://github.com/kuoll/pagemirror
Understøttede Sprog 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
    }
}