Asset Collector

Downloads favicon file from Webpage

Asset Collector क्या है?

Asset Collector https://timalexander.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Downloads favicon file from Webpage"।

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

screenshot

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

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

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

                        This is a simple extension which allows you to download the favicon of any website you're on, either as an ICO or PNG file. This is perfect for web developers that find it annoying to collect certain assets from a site.                    

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

नाम Asset Collector Asset Collector
ID kfhppocmokcgpgldlmipnbbjnkobnaad
आधिकारिक URL https://chromewebstore.google.com/detail/asset-collector/kfhppocmokcgpgldlmipnbbjnkobnaad
विवरण Downloads favicon file from Webpage
फ़ाइल का आकार 15.31 KB
स्थापना संख्या 22
वर्तमान संस्करण 0.1
अंतिम अपडेट 2017-10-02
प्रकाशन तिथि 2017-10-02
रेटिंग 4.00/5 कुल 1 रेटिंग्स
डेवलपर https://timalexander.com
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Asset Collector",
    "description": "Downloads favicon file from Webpage",
    "version": "0.1",
    "minimum_chrome_version": "16.0.884",
    "permissions": [
        "downloads",
        "",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": false,
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": true
    },
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "manifest_version": 2
}