Motrix WebExtension

WebExtension for Motrix download manager

Motrix WebExtension란 무엇입니까?

Motrix WebExtension은(는) https://www.gautamkrishnar.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "WebExtension for Motrix download manager"입니다.

확장 프로그램 스크린샷

screenshot

Motrix WebExtension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This WebExtension allows you to automatically download all the files via Motrix Download Manager instead of your browser's native download manager.

Please read the documentation before using the extension: https://github.com/gautamkrishnar/motrix-webextension#how-to-use

Motrix needs to be running in the background for this extension to work. This extension cannot launch Motrix automatically if it is not already running, due to API limitations. You can download the motrix download manager from here: https://motrix.app/

Feel free to report issues at: https://github.com/gautamkrishnar/motrix-webextension/issues
Make sure that you are not filing a duplicate issue. This is an opensource project. Your contributions can make a difference.                    

확장 프로그램 기본 정보

이름 Motrix WebExtension Motrix WebExtension
ID djlkbfdlljbachafjmfomhaciglnmkgj
공식 URL https://chromewebstore.google.com/detail/motrix-webextension/djlkbfdlljbachafjmfomhaciglnmkgj
설명 WebExtension for Motrix download manager
파일 크기 326 KB
설치 횟수 40,000
현재 버전 23.12.10
최근 업데이트 2023-12-11
출시 날짜 2021-09-19
평점 3.32/5 총 47 개의 평점
개발자 https://www.gautamkrishnar.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/gautamkrishnar/motrix-webextension
도움말 페이지 URL https://github.com/gautamkrishnar/motrix-webextension/issues
개인정보 보호 정책 페이지 URL https://www.gautamkrishnar.com/privacy-policy-for-webextensions
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "23.12.10",
    "short_name": "__MSG_appShortName__",
    "manifest_version": 3,
    "default_locale": "en",
    "homepage_url": "https:\/\/github.com\/gautamkrishnar\/motrix-webextension",
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "action": {
        "browser_style": true,
        "default_icon": {
            "16": "images\/16.png",
            "32": "images\/32.png",
            "48": "images\/48.png",
            "128": "images\/128.png"
        },
        "default_title": "__MSG_browserActionTitle__",
        "default_popup": "pages\/popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*",
                "scripts\/*",
                "styles\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "downloads",
        "downloads.shelf",
        "notifications",
        "storage",
        "contextMenus",
        "offscreen",
        "cookies"
    ],
    "host_permissions": [
        ""
    ]
}