Send to Batch Speed

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

What is Send to Batch Speed?

Send to Batch Speed is a Chrome extension developed by https://defaced.dev, and its main feature is "Adds a context menu option to send any page to Batch Speed".

Extension Screenshots

screenshot

Download Send to Batch Speed Extension CRX File

Download Send to Batch Speed extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Send to Batch Speed Send to Batch Speed
ID djfcicmppldabihiegechhlilfglhebj
Official URL https://chromewebstore.google.com/detail/send-to-batch-speed/djfcicmppldabihiegechhlilfglhebj
Description Adds a context menu option to send any page to Batch Speed
File Size 4.17 KB
Installation Count 92
Current Version 1.0
Last Updated 2020-09-23
Publish Date 2020-09-23
Developer https://defaced.dev
Email [email protected]
Payment Type free
Extension Website https://github.com/workeffortwaste/send-to-batchspeed
Help Page URL https://github.com/workeffortwaste/send-to-batchspeed
Supported Languages 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"
            ]
        }
    ]
}