Replacer

Replaces all images with an image of your choice

Τι είναι το Replacer;

Το Replacer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον michaelm244, και η κύρια λειτουργία του είναι "Replaces all images with an image of your choice".

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

screenshot

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

Λήψη αρχείων επέκτασης Replacer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        There's all these extensions that let you replace all images on the page with ____. So, why not make your own? Just enter something you want to search, and all the images on the page will get replaced with that.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Replacer Replacer
ID nkkofabfinoleplbkkbmhhkjmomdgpag
Επίσημο URL https://chrome.google.com/webstore/detail/replacer/nkkofabfinoleplbkkbmhhkjmomdgpag
Περιγραφή Replaces all images with an image of your choice
Μέγεθος Αρχείου 606 KB
Αριθμός Εγκαταστάσεων 294
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2014-01-18
Ημερομηνία Δημοσίευσης 2014-01-18
Αξιολόγηση 2.07/5 Συνολικά 14 Αξιολογήσεις
Προγραμματιστής michaelm244
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/michaelm244/replacer
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Replacer",
    "description": "Replaces all images with an image of  your choice",
    "version": "1.0",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "https:\/\/www.google.com\/"
    ],
    "content_scripts": [
        {
            "js": [
                "background.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.google.com; object-src 'self'"
}