Replacer
Replaces all images with an image of your choice
Replacerとは何ですか?
Replacerはmichaelm244によって開発されたChromeの拡張機能で、その主な機能は「Replaces all images with an image of your choice」です。
拡張機能のスクリーンショット
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.
拡張機能の基本情報
名前 | |
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'" } |