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ファイルをダウンロード

Rewriter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
    ]
}