Extension Source Downloader

Download the source code for chrome extensions via toolbar popup in .zip or .crx formats.

Extension Source Downloader란 무엇입니까?

Extension Source Downloader은(는) leocompson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download the source code for chrome extensions via toolbar popup in .zip or .crx formats."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Extension Source Downloader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension allows you to download the source code for chrome extensions. Please open the toolbar popup and add a valid extension URL in the designated input field (top section). You can also navigate to the chrome web store, find an extension, and then open the toolbar popup. 

The URL for the active tab will be automatically inserted into the input field. Once the URL is added, the related extension ID will be extracted and written in the - Current extension ID - area. Now, please click on the - Download as CRX - or - Download as ZIP - buttons to start downloading the extension as ".zip" or ".crx" formats. Please note that the progress bar in the toolbar popup shows you the current progress for downloading the extension. Once downloading is done, the final file will be downloaded to the default download location on your machine.

If you have a feature request or found a bug to report, please fill the bug report form on the addon's homepage (https://mybrowseraddon.com/extension-source-downloader.html).                    

확장 프로그램 기본 정보

이름 Extension Source Downloader Extension Source Downloader
ID dlbdalfhhfecaekoakmanjflmdhmgpea
공식 URL https://chromewebstore.google.com/detail/extension-source-download/dlbdalfhhfecaekoakmanjflmdhmgpea
설명 Download the source code for chrome extensions via toolbar popup in .zip or .crx formats.
파일 크기 21.18 KB
설치 횟수 10,672
현재 버전 0.1.3
최근 업데이트 2023-11-20
출시 날짜 2020-11-23
평점 4.07/5 총 14 개의 평점
개발자 leocompson
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://mybrowseraddon.com/extension-source-downloader.html
도움말 페이지 URL https://mybrowseraddon.com/extension-source-downloader.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.3",
    "manifest_version": 3,
    "name": "Extension Source Downloader",
    "homepage_url": "https:\/\/mybrowseraddon.com\/extension-source-downloader.html",
    "description": "Download the source code for chrome extensions via toolbar popup in .zip or .crx formats.",
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "*:\/\/clients2.google.com\/service\/update2\/crx*",
        "*:\/\/clients2.googleusercontent.com\/crx\/download\/*"
    ],
    "permissions": [
        "storage",
        "activeTab",
        "downloads"
    ],
    "action": {
        "default_popup": "data\/popup\/popup.html",
        "default_title": "Extension Source Downloader",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}