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)はhttp://kuoll.comによって開発されたChromeの拡張機能で、その主な機能は「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)拡張機能のCRXファイルをダウンロード

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                    

拡張機能の基本情報

名前 PageMirror (build by Kuoll.com) PageMirror (build by Kuoll.com)
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
    }
}