Lazymonkey

Executing a Script/CSS

Lazymonkey là gì?

Lazymonkey là một tiện ích mở rộng Chrome được phát triển bởi Kunihiro Ando, và tính năng chính của nó là "Executing a Script/CSS".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Lazymonkey

Tải xuống các tệp mở rộng Lazymonkey dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Lazymonkey Lazymonkey
ID jllgfeanonefahnaoaefkcccpagpjjoe
URL Chính Thức https://chrome.google.com/webstore/detail/lazymonkey/jllgfeanonefahnaoaefkcccpagpjjoe
Mô tả Executing a Script/CSS
Kích Thước Tệp 276 KB
Số Lần Cài Đặt 79
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2015-09-24
Ngày Phát Hành 2015-09-24
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Kunihiro Ando
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}