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文件

下载Extension Source Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}