Custom Web

Customize the web by adding your own js and css to websites.

Custom Webคืออะไร?

Custom Web เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Shrikant Sharat Kandula และคุณลักษณะหลักของมันคือ "Customize the web by adding your own js and css to websites."

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

screenshot

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

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

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

                        An extension that lets you add per-domain custom CSS and JavaScript that will be automatically applied/run on every page of that domain.

This works a lot like dotjs, if you know what that is, except there are no files and no server daemon. All data is stored on your chrome local storage (*not* HTML5 localStorage).

**Note**: Data is *not* synced across your systems due to very limiting quota limitations imposed by Chrome extension API.

Although I've been using this extension myself for quite some time, I'd still consider it beta. I advice you to regularly take backups of your data and save them.

And no, you can't trust me. The extension is open source (MIT License). If you are paranoid like me, you may check the source code at https://github.com/sharat87/custom-web.

Thanks and enjoy breaking/tweaking the web!

Alternative/Similar extensions:
- dotjs
- Stylebot (No JS)
- RWeb
- TamperMonkey                    

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

ชื่อ Custom Web Custom Web
ID nlacgphiebglipgnadgcegiefbfcpnjk
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/custom-web/nlacgphiebglipgnadgcegiefbfcpnjk
คำอธิบาย Customize the web by adding your own js and css to websites.
ขนาดไฟล์ 382 KB
จำนวนการติดตั้ง 107
เวอร์ชันปัจจุบัน 0.4
อัปเดตครั้งล่าสุด 2014-03-31
วันที่เผยแพร่ 2014-03-31
คะแนน 2.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Shrikant Sharat Kandula
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/sharat87/custom-web
URL หน้าช่วยเหลือ https://github.com/sharat87/custom-web/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Custom Web",
    "version": "0.4",
    "description": "Customize the web by adding your own js and css to websites.",
    "permissions": [
        "storage",
        "clipboardWrite",
        "clipboardRead",
        "unlimitedStorage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon-19.png",
            "38": "icons\/icon-38.png"
        },
        "default_title": "Customize this site"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "vendor\/jquery-2.0.3.min.js",
                "editor.js"
            ]
        }
    ],
    "icons": {
        "128": "icons\/icon-128.png",
        "48": "icons\/icon-48.png",
        "16": "icons\/icon-16.png"
    },
    "options_page": "options.html",
    "web_accessible_resources": [
        "editor.html",
        "vendor\/jquery-2.0.3.min.js"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+I"
            }
        }
    },
    "manifest_version": 2
}