Replacer

Replaces all images with an image of your choice

什么是Replacer?

Replacer是由michaelm244开发的Chrome扩展程序,该扩展的主要功能是“Replaces all images with an image of your choice”。

扩展截图

screenshot

下载Replacer扩展crx文件

下载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'"
}