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
Apa itu PageMirror (build by Kuoll.com)?
PageMirror (build by Kuoll.com) adalah ekstensi Chrome yang dikembangkan oleh http://kuoll.com, dan fitur utamanya adalah "A Demonstration of miroring an entire document using DOM Mutation Observers and the Mutation Summary library. build by Kuoll.com".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi PageMirror (build by Kuoll.com)
Unduh file ekstensi PageMirror (build by Kuoll.com) dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | |
ID | kefndlndbcgpbimijjjefolmglodjoda |
URL Resmi | https://chrome.google.com/webstore/detail/pagemirror-build-by-kuoll/kefndlndbcgpbimijjjefolmglodjoda |
Deskripsi | A Demonstration of miroring an entire document using DOM Mutation Observers and the Mutation Summary library. build by Kuoll.com |
Ukuran File | 46.83 KB |
Jumlah Instalasi | 22 |
Versi Saat Ini | 2 |
Terakhir Diperbarui | 2016-07-12 |
Tanggal Publikasi | 2016-07-12 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | http://kuoll.com |
Tipe Pembayaran | free |
Situs Ekstensi | http://www.kuoll.com/ |
URL Halaman Bantuan | https://github.com/kuoll/pagemirror |
Bahasa yang Didukung | 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 } } |