Lazymonkey

Executing a Script/CSS

Co to jest Lazymonkey?

Lazymonkey to rozszerzenie Chrome opracowane przez Kunihiro Ando, a jego główną funkcją jest „Executing a Script/CSS”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Lazymonkey

Pobierz pliki rozszerzeń Lazymonkey w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Lazymonkey Lazymonkey
ID jllgfeanonefahnaoaefkcccpagpjjoe
Oficjalny URL https://chrome.google.com/webstore/detail/lazymonkey/jllgfeanonefahnaoaefkcccpagpjjoe
Opis Executing a Script/CSS
Rozmiar pliku 276 KB
Liczba instalacji 79
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2015-09-24
Data Publikacji 2015-09-24
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Kunihiro Ando
Typ Płatności free
Obsługiwane Języki 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"
}