Image Switcher

Let's switch images you do not want to see to other one.

Image Switcher क्या है?

Image Switcher star__hoshi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Let's switch images you do not want to see to other one."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Image Switcher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        You can switch the image of the specified URL to a different image.
指定した URL の画像を別の画像に置き換えることができます。

Let's switch images you do not want to see to other one.  
見たくない画像を別の画像に切り替えてしまいましょう。

You can set the URL of the image on the options screen.
オプション画面で画像の URL を指定できます。

Source Code: starhoshi/ImageSwitcher
https://github.com/starhoshi/ImageSwitcher                    

एक्सटेंशन की मूल जानकारी

नाम Image Switcher Image Switcher
ID agbenbfomghnjfbelmoeplkjcflogomb
आधिकारिक URL https://chromewebstore.google.com/detail/image-switcher/agbenbfomghnjfbelmoeplkjcflogomb
विवरण Let's switch images you do not want to see to other one.
फ़ाइल का आकार 1.34 MB
स्थापना संख्या 60
वर्तमान संस्करण 1.0.2
अंतिम अपडेट 2017-06-09
प्रकाशन तिथि 2017-06-09
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर star__hoshi
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://twitter.com/star__hoshi
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Image Switcher",
    "short_name": "ImageSwitcher",
    "description": "Let's switch images you do not want to see to other one.",
    "version": "1.0.2",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "storage"
    ]
}