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
官方網址 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"
    ]
}