Replacer
Replaces all images with an image of your choice
What is Replacer?
Replacer is a Chrome extension developed by michaelm244, and its main feature is "Replaces all images with an image of your choice".
Extension Screenshots
Download Replacer Extension CRX File
Download Replacer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | nkkofabfinoleplbkkbmhhkjmomdgpag |
Official URL | https://chrome.google.com/webstore/detail/replacer/nkkofabfinoleplbkkbmhhkjmomdgpag |
Description | Replaces all images with an image of your choice |
File Size | 606 KB |
Installation Count | 294 |
Current Version | 1.0 |
Last Updated | 2014-01-18 |
Publish Date | 2014-01-18 |
Rating | 2.07/5 Total 14 Ratings |
Developer | michaelm244 |
Payment Type | free |
Extension Website | https://github.com/michaelm244/replacer |
Supported Languages | 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'" } |