Toggleable Chrome Unicorns

This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off.

Toggleable Chrome Unicorns क्या है?

Toggleable Chrome Unicorns dennistheflash द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off."।

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

screenshot

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

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

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

                        This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off.                    

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

नाम Toggleable Chrome Unicorns Toggleable Chrome Unicorns
ID fegnjfjcokdemicjjhiihkggbniknnbg
आधिकारिक URL https://chrome.google.com/webstore/detail/fegnjfjcokdemicjjhiihkggbniknnbg
विवरण This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off.
फ़ाइल का आकार 672 KB
स्थापना संख्या 137
वर्तमान संस्करण 1.0
अंतिम अपडेट 2017-12-17
प्रकाशन तिथि 2017-12-17
रेटिंग 4.00/5 कुल 1 रेटिंग्स
डेवलपर dennistheflash
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Toggleable Chrome Unicorns",
    "version": "1.0",
    "web_accessible_resources": [
        "unicorns\/*.jpg"
    ],
    "background": {
        "scripts": [
            "unicorn.js"
        ]
    },
    "icons": {
        "16": "ic16.png",
        "48": "ic48.png",
        "128": "ic128.png"
    },
    "browser_action": {
        "default_icon": "ic128.png",
        "default_popup": "popup.html",
        "default_title": "Chrome Unicorns"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "unicorn.js"
            ]
        }
    ]
}