Lazymonkey

Executing a Script/CSS

Lazymonkey क्या है?

Lazymonkey Kunihiro Ando द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Executing a Script/CSS"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Lazymonkey एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
}