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                    

Основная информация о расширении

Название 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
    }
}