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
Cos'è PageMirror (build by Kuoll.com)?
PageMirror (build by Kuoll.com) è un'estensione di Chrome sviluppata da http://kuoll.com, e la sua funzione principale è "A Demonstration of miroring an entire document using DOM Mutation Observers and the Mutation Summary library. build by Kuoll.com".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione PageMirror (build by Kuoll.com)
Scarica i file di estensione PageMirror (build by Kuoll.com) in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | kefndlndbcgpbimijjjefolmglodjoda |
URL Ufficiale | https://chrome.google.com/webstore/detail/pagemirror-build-by-kuoll/kefndlndbcgpbimijjjefolmglodjoda |
Descrizione | A Demonstration of miroring an entire document using DOM Mutation Observers and the Mutation Summary library. build by Kuoll.com |
Dimensione del File | 46.83 KB |
Conteggio Installazioni | 22 |
Versione Corrente | 2 |
Ultimo Aggiornamento | 2016-07-12 |
Data di Pubblicazione | 2016-07-12 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | http://kuoll.com |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://www.kuoll.com/ |
URL della Pagina di Aiuto | https://github.com/kuoll/pagemirror |
Lingue Supportate | 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 } } |