Rewriter

Rewrite the content of a webpage using user-defined rules.

Rewriter란 무엇입니까?

Rewriter은(는) Peshmelba에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Rewrite the content of a webpage using user-defined rules."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Rewriter is a web extension that use user-defined rules to rewrite some contents on a webpage.

You can use it as a simple word replacer, as a custom adblocker, or as a curse filter.
Everything is permitted, you are the master of the rules you write.
Rewriter also accepts regular-expressions to perform a more powerful search in the page.

It as a builder to help you create your rules, just click the icon next to the address bar.

Rewriter links your rules with your Google account, so you just have to log on an other computer with your account to get all your rules back.


#####
This application is in development. Some changes will come often.
This application is opensource, go at https://github.com/Peshmelba/Rewriter-chrome to participate to this project.
Submit any issues, bug reports, or ideas at https://github.com/Peshmelba/Rewriter-chrome/issues.                    

확장 프로그램 기본 정보

이름 Rewriter Rewriter
ID kgoaldgnannoebilojgnheicbkfbebjg
공식 URL https://chromewebstore.google.com/detail/rewriter/kgoaldgnannoebilojgnheicbkfbebjg
설명 Rewrite the content of a webpage using user-defined rules.
파일 크기 189 KB
설치 횟수 1,378
현재 버전 1.0.1
최근 업데이트 2015-02-26
출시 날짜 2015-02-25
평점 4.25/5 총 4 개의 평점
개발자 Peshmelba
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Peshmelba/Rewriter-chrome/
도움말 페이지 URL https://github.com/Peshmelba/Rewriter-chrome/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Rewriter",
    "description": "Rewrite the content of a webpage using user-defined rules.",
    "version": "1.0.1",
    "icons": {
        "24": "image\/icon24.png",
        "32": "image\/icon32.png",
        "48": "image\/icon48.png",
        "64": "image\/icon64.png",
        "128": "image\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "24": "image\/icon24.png",
            "32": "image\/icon32.png",
            "48": "image\/icon48.png",
            "64": "image\/icon64.png",
            "128": "image\/icon128.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "include\/common.js",
                "class\/rule.js",
                "class\/datamanager.js",
                "content-script\/rewriter.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}