Rewriter

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

Rewriter क्या है?

Rewriter Peshmelba द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Rewrite the content of a webpage using user-defined rules."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Rewriter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}