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
Vad är PageMirror (build by Kuoll.com)?
PageMirror (build by Kuoll.com) är en Chrome-tillägg utvecklad av http://kuoll.com, och dess huvudfunktion är "A Demonstration of miroring an entire document using DOM Mutation Observers and the Mutation Summary library. build by Kuoll.com".
Tilläggsskärmbilder
Ladda ner PageMirror (build by Kuoll.com)-förlängningens CRX-fil
Ladda ner PageMirror (build by Kuoll.com)-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | |
ID | kefndlndbcgpbimijjjefolmglodjoda |
Officiell webbadress | https://chrome.google.com/webstore/detail/pagemirror-build-by-kuoll/kefndlndbcgpbimijjjefolmglodjoda |
Beskrivning | A Demonstration of miroring an entire document using DOM Mutation Observers and the Mutation Summary library. build by Kuoll.com |
Filstorlek | 46.83 KB |
Antal Installationer | 22 |
Aktuell Version | 2 |
Senast Uppdaterad | 2016-07-12 |
Publiceringsdatum | 2016-07-12 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | http://kuoll.com |
Betalningssätt | free |
Tilläggswebbplats | http://www.kuoll.com/ |
Hjälpsida URL | https://github.com/kuoll/pagemirror |
Stödda Språk | 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 } } |