Replacer
Replaces all images with an image of your choice
Replacer là gì?
Replacer là một tiện ích mở rộng Chrome được phát triển bởi michaelm244, và tính năng chính của nó là "Replaces all images with an image of your choice".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Replacer
Tải xuống các tệp mở rộng Replacer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | nkkofabfinoleplbkkbmhhkjmomdgpag |
URL Chính Thức | https://chrome.google.com/webstore/detail/replacer/nkkofabfinoleplbkkbmhhkjmomdgpag |
Mô tả | Replaces all images with an image of your choice |
Kích Thước Tệp | 606 KB |
Số Lần Cài Đặt | 294 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2014-01-18 |
Ngày Phát Hành | 2014-01-18 |
Đánh Giá | 2.07/5 Tổng số 14 Đánh Giá |
Nhà Phát Triển | michaelm244 |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/michaelm244/replacer |
Ngôn Ngữ Được Hỗ Trợ | 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'" } |