Send to Batch Speed

Adds a context menu option to send any page to Batch Speed

Send to Batch Speed là gì?

Send to Batch Speed là một tiện ích mở rộng Chrome được phát triển bởi https://defaced.dev, và tính năng chính của nó là "Adds a context menu option to send any page to Batch Speed".

Ả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 Send to Batch Speed

Tải xuống các tệp mở rộng Send to Batch Speed 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

                        Quickly launch a Batch Speed (https://batchspeed.com/) test for any site.                    

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

Tên Send to Batch Speed Send to Batch Speed
ID djfcicmppldabihiegechhlilfglhebj
URL Chính Thức https://chromewebstore.google.com/detail/send-to-batch-speed/djfcicmppldabihiegechhlilfglhebj
Mô tả Adds a context menu option to send any page to Batch Speed
Kích Thước Tệp 4.17 KB
Số Lần Cài Đặt 92
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-09-23
Ngày Phát Hành 2020-09-23
Nhà Phát Triển https://defaced.dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/workeffortwaste/send-to-batchspeed
URL Trang Trợ Giúp https://github.com/workeffortwaste/send-to-batchspeed
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Send to Batch Speed",
    "version": "1.0",
    "description": "Adds a context menu option to send any page to Batch Speed",
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "context.js"
        ],
        "persistent": true
    },
    "icons": {
        "48": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/batchspeed.com\/?*"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}