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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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/ |
عنوان صفحة المساعدة | 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 } } |