Lazymonkey

Executing a Script/CSS

Что такое Lazymonkey?

Lazymonkey - это расширение Chrome, разработанное Kunihiro Ando, и его основная функция - "Executing a Script/CSS".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Lazymonkey

Скачайте файлы расширений Lazymonkey в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Chrome extension like greasemonkey (Beta testing)


Not using background/event page.
Low memory consumption.



Not supported script update.

http://wiki.greasespot.net/Greasemonkey_Manual:API


=========
user.js
=========

Supported API:
 GM_xmlhttpRequest 
 GM_addStyle 
 GM_getValue 
 GM_setValue 
 GM_listValues
 GM_deleteValue
 GM_log 
 GM_openInTab 

Metadata
 @name
 @include
 @exclude
 @run-at                    

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

Название Lazymonkey Lazymonkey
ID jllgfeanonefahnaoaefkcccpagpjjoe
Официальный URL https://chrome.google.com/webstore/detail/lazymonkey/jllgfeanonefahnaoaefkcccpagpjjoe
Описание Executing a Script/CSS
Размер файла 276 KB
Количество установок 79
Текущая Версия 1.2
Последнее Обновление 2015-09-24
Дата публикации 2015-09-24
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Kunihiro Ando
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Lazymonkey",
    "description": "Executing a Script\/CSS",
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "js\/contentscript.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage",
        ""
    ],
    "options_page": "options.html",
    "version": "1.2"
}