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 } } |