Lazymonkey

Executing a Script/CSS

什麼是Lazymonkey?

Lazymonkey是由Kunihiro Ando開發的Chrome擴展程式,該擴展的主要功能是“Executing a Script/CSS”。

擴展截圖

screenshot

下載Lazymonkey擴展crx文件

下載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
官方網址 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"
}