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
PageMirror (build by Kuoll.com)คืออะไร?
PageMirror (build by Kuoll.com) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://kuoll.com และคุณลักษณะหลักของมันคือ "A Demonstration of miroring an entire document using DOM Mutation Observers and the Mutation Summary library. build by Kuoll.com"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PageMirror (build by Kuoll.com)
ดาวน์โหลดไฟล์ส่วนขยาย PageMirror (build by Kuoll.com) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | kefndlndbcgpbimijjjefolmglodjoda |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/pagemirror-build-by-kuoll/kefndlndbcgpbimijjjefolmglodjoda |
คำอธิบาย | A Demonstration of miroring an entire document using DOM Mutation Observers and the Mutation Summary library. build by Kuoll.com |
ขนาดไฟล์ | 46.83 KB |
จำนวนการติดตั้ง | 22 |
เวอร์ชันปัจจุบัน | 2 |
อัปเดตครั้งล่าสุด | 2016-07-12 |
วันที่เผยแพร่ | 2016-07-12 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | http://kuoll.com |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://www.kuoll.com/ |
URL หน้าช่วยเหลือ | https://github.com/kuoll/pagemirror |
ภาษาที่รองรับ | 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 } } |