Asset Collector

Downloads favicon file from Webpage

Asset Collector란 무엇입니까?

Asset Collector은(는) https://timalexander.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Downloads favicon file from Webpage"입니다.

확장 프로그램 스크린샷

screenshot

Asset Collector 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
}