Send to Batch Speed

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

Apa itu Send to Batch Speed?

Send to Batch Speed adalah ekstensi Chrome yang dikembangkan oleh https://defaced.dev, dan fitur utamanya adalah "Adds a context menu option to send any page to Batch Speed".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Send to Batch Speed

Unduh file ekstensi Send to Batch Speed dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Send to Batch Speed Send to Batch Speed
ID djfcicmppldabihiegechhlilfglhebj
URL Resmi https://chromewebstore.google.com/detail/send-to-batch-speed/djfcicmppldabihiegechhlilfglhebj
Deskripsi Adds a context menu option to send any page to Batch Speed
Ukuran File 4.17 KB
Jumlah Instalasi 92
Versi Saat Ini 1.0
Terakhir Diperbarui 2020-09-23
Tanggal Publikasi 2020-09-23
Pengembang https://defaced.dev
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/workeffortwaste/send-to-batchspeed
URL Halaman Bantuan https://github.com/workeffortwaste/send-to-batchspeed
Bahasa yang Didukung 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"
            ]
        }
    ]
}