repl.it download

Adds a download button to repl.it

repl.it download là gì?

repl.it download là một tiện ích mở rộng Chrome được phát triển bởi Amish Shah, và tính năng chính của nó là "Adds a download button to repl.it".

Ả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 repl.it download

Tải xuống các tệp mở rộng repl.it download 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

                                            

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

Tên repl.it download repl.it download
ID pgmcojeijjhacgkkjaakdafmloncpema
URL Chính Thức https://chromewebstore.google.com/detail/replit-download/pgmcojeijjhacgkkjaakdafmloncpema
Mô tả Adds a download button to repl.it
Kích Thước Tệp 110 KB
Số Lần Cài Đặt 4,046
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2016-06-12
Ngày Phát Hành 2016-06-12
Đánh Giá 1.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Amish Shah
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "repl.it download",
    "description": "Adds a download button to repl.it",
    "version": "1.0.1",
    "manifest_version": 2,
    "permissions": [
        "downloads"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/repl.it\/*"
            ],
            "js": [
                "jquery-3.0.0.min.js",
                "inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "main.js",
        "res\/arrow.png"
    ],
    "browser_action": {
        "default_title": "REPL.it Download",
        "default_icon": "res\/icon.png"
    },
    "icons": {
        "16": "res\/icon16.png",
        "32": "res\/icon32.png",
        "48": "res\/icon48.png",
        "128": "res\/icon128.png"
    }
}