Replacer
Replaces all images with an image of your choice
Replacer क्या है?
Replacer michaelm244 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replaces all images with an image of your choice"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Replacer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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'" } |