Rewriter

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

Τι είναι το Rewriter;

Το Rewriter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Peshmelba, και η κύρια λειτουργία του είναι "Rewrite the content of a webpage using user-defined rules.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Rewriter

Λήψη αρχείων επέκτασης 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"
    ]
}