Motrix WebExtension

WebExtension for Motrix download manager

Motrix WebExtension là gì?

Motrix WebExtension là một tiện ích mở rộng Chrome được phát triển bởi https://www.gautamkrishnar.com, và tính năng chính của nó là "WebExtension for Motrix download manager".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Motrix WebExtension

Tải xuống các tệp mở rộng Motrix WebExtension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Motrix WebExtension Motrix WebExtension
ID djlkbfdlljbachafjmfomhaciglnmkgj
URL Chính Thức https://chromewebstore.google.com/detail/motrix-webextension/djlkbfdlljbachafjmfomhaciglnmkgj
Mô tả WebExtension for Motrix download manager
Kích Thước Tệp 326 KB
Số Lần Cài Đặt 40,000
Phiên Bản Hiện Tại 23.12.10
Cập Nhật Lần Cuối 2023-12-11
Ngày Phát Hành 2021-09-19
Đánh Giá 3.32/5 Tổng số 47 Đánh Giá
Nhà Phát Triển https://www.gautamkrishnar.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/gautamkrishnar/motrix-webextension
URL Trang Trợ Giúp https://github.com/gautamkrishnar/motrix-webextension/issues
URL Trang Chính Sách Bảo Mật https://www.gautamkrishnar.com/privacy-policy-for-webextensions
Ngôn Ngữ Được Hỗ Trợ 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": [
        ""
    ]
}