Custom Web

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

Custom Web란 무엇입니까?

Custom Web은(는) Shrikant Sharat Kandula에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customize the web by adding your own js and css to websites."입니다.

확장 프로그램 스크린샷

screenshot

Custom Web 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}