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 je PageMirror (build by Kuoll.com)?
PageMirror (build by Kuoll.com) je rozšíření Chrome vyvinuté http://kuoll.com, a jeho hlavní funkcí je „A Demonstration of miroring an entire document using DOM Mutation Observers and the Mutation Summary library. build by Kuoll.com“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření PageMirror (build by Kuoll.com)
Stáhněte si soubory rozšíření PageMirror (build by Kuoll.com) ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | |
ID | kefndlndbcgpbimijjjefolmglodjoda |
Oficiální URL | https://chrome.google.com/webstore/detail/pagemirror-build-by-kuoll/kefndlndbcgpbimijjjefolmglodjoda |
Popis | A Demonstration of miroring an entire document using DOM Mutation Observers and the Mutation Summary library. build by Kuoll.com |
Velikost souboru | 46.83 KB |
Počet instalací | 22 |
Aktuální Verze | 2 |
Poslední Aktualizace | 2016-07-12 |
Datum Vydání | 2016-07-12 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | http://kuoll.com |
Typ Platby | free |
Webové stránky Rozšíření | http://www.kuoll.com/ |
URL Stránky Nápovědy | https://github.com/kuoll/pagemirror |
Podporované Jazyky | 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 } } |