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
Qu'est-ce que PageMirror (build by Kuoll.com) ?
PageMirror (build by Kuoll.com) est une extension Chrome développée par http://kuoll.com, et sa fonction principale est "A Demonstration of miroring an entire document using DOM Mutation Observers and the Mutation Summary library. build by Kuoll.com".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension PageMirror (build by Kuoll.com)
Téléchargez les fichiers d'extension PageMirror (build by Kuoll.com) au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | kefndlndbcgpbimijjjefolmglodjoda |
URL Officiel | https://chrome.google.com/webstore/detail/pagemirror-build-by-kuoll/kefndlndbcgpbimijjjefolmglodjoda |
Description | A Demonstration of miroring an entire document using DOM Mutation Observers and the Mutation Summary library. build by Kuoll.com |
Taille du Fichier | 46.83 KB |
Nombre d'Installations | 22 |
Version Actuelle | 2 |
Dernière Mise à Jour | 2016-07-12 |
Date de Publication | 2016-07-12 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | http://kuoll.com |
Type de Paiement | free |
Site Web de l'Extension | http://www.kuoll.com/ |
URL de la Page d'Aide | https://github.com/kuoll/pagemirror |
Langues Prises en Charge | 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 } } |