Monkey Wrench

Smarter Way To Handle Websites : Custom scripts on custom URLs

Monkey Wrenchคืออะไร?

Monkey Wrench เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mayur Kataria และคุณลักษณะหลักของมันคือ "Smarter Way To Handle Websites : Custom scripts on custom URLs"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Monkey Wrench

ดาวน์โหลดไฟล์ส่วนขยาย Monkey Wrench ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Monkey-Wrench is a powerful utility that allows you to run custom JavaScript and apply custom CSS styles on any website

Usage : 
Right click on Monkey Wrench Icon and click 'Options'

Info :
We visit several sites regularly, and often we wish if we could change the way the page looked. There may be times when you want to alter layouts or add additional capabilities to somebody else's site. With Monkey-Wrench, you can do all that.

Monkey-Wrench allows you to add external JavaScript libraries and CSS files as well, so you can use CDNs and other hosted sources for your JS and CSS. Additionally, you can write your own JavaScript and CSS too. Specify which site (URL, regular expressions supported) you want this utility to run on, and bamm! You're done! You can have Monkey Wrench to run your code automatically or make it run on the click of the button.

Let us know how you liked the extension. We intend to build a community of scripts and host them soon. If you would like to share your scripts, send us an email at [email protected] for now. If you would like to contribute, don't hesitate. We hope you love Monkey-Wrench.

Developers: 

https://twitter.com/Gulagulaananda
https://twitter.com/mayurck291
https://twitter.com/parinck                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Monkey Wrench Monkey Wrench
ID baemnbkeofdleidjnpjfoleobieckdlk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/monkey-wrench/baemnbkeofdleidjnpjfoleobieckdlk
คำอธิบาย Smarter Way To Handle Websites : Custom scripts on custom URLs
ขนาดไฟล์ 604 KB
จำนวนการติดตั้ง 916
เวอร์ชันปัจจุบัน 3.0
อัปเดตครั้งล่าสุด 2014-08-21
วันที่เผยแพร่ 2014-08-21
คะแนน 4.33/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา Mayur Kataria
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Monkey Wrench",
    "version": "3.0",
    "manifest_version": 2,
    "description": "Smarter Way To Handle Websites : Custom scripts on custom URLs",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "unlimitedStorage",
        "identity"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon128.png",
        "default_title": "Click to see magic !!"
    },
    "background": {
        "scripts": [
            "js\/lib\/jquery.js",
            "js\/lib\/jstorage.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/injected.js"
            ],
            "css": [
                "css\/magic.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "js\/mw-sidepan.js",
        "html\/mw-sidepan.html",
        "html\/options2.html",
        "imgs\/icon-close.png"
    ],
    "options_page": "html\/options2.html",
    "oauth2": {
        "client_id": "709631286950-9r57sicf10o2i2g346lr2ddvaib8a5v8.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/plus.login",
            "https:\/\/www.googleapis.com\/auth\/userinfo.email"
        ]
    }
}