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