Lazymonkey

Executing a Script/CSS

Cos'è Lazymonkey?

Lazymonkey è un'estensione di Chrome sviluppata da Kunihiro Ando, e la sua funzione principale è "Executing a Script/CSS".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Lazymonkey

Scarica i file di estensione Lazymonkey in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Lazymonkey Lazymonkey
ID jllgfeanonefahnaoaefkcccpagpjjoe
URL Ufficiale https://chrome.google.com/webstore/detail/lazymonkey/jllgfeanonefahnaoaefkcccpagpjjoe
Descrizione Executing a Script/CSS
Dimensione del File 276 KB
Conteggio Installazioni 79
Versione Corrente 1.2
Ultimo Aggiornamento 2015-09-24
Data di Pubblicazione 2015-09-24
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Kunihiro Ando
Tipo di Pagamento free
Lingue Supportate 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"
}