Lazymonkey

Executing a Script/CSS

What is Lazymonkey?

Lazymonkey is a Chrome extension developed by Kunihiro Ando, and its main feature is "Executing a Script/CSS".

Extension Screenshots

screenshot

Download Lazymonkey Extension CRX File

Download Lazymonkey extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Lazymonkey Lazymonkey
ID jllgfeanonefahnaoaefkcccpagpjjoe
Official URL https://chrome.google.com/webstore/detail/lazymonkey/jllgfeanonefahnaoaefkcccpagpjjoe
Description Executing a Script/CSS
File Size 276 KB
Installation Count 79
Current Version 1.2
Last Updated 2015-09-24
Publish Date 2015-09-24
Rating 5.00/5 Total 1 Ratings
Developer Kunihiro Ando
Payment Type free
Supported Languages 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"
}