Send to Batch Speed

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

Was ist Send to Batch Speed?

Send to Batch Speed ist eine Chrome-Erweiterung, die von https://defaced.dev entwickelt wurde, und ihr Hauptmerkmal ist "Adds a context menu option to send any page to Batch Speed".

Erweiterungsscreenshots

screenshot

Send to Batch Speed-Erweiterungs-CRX-Datei herunterladen

Laden Sie Send to Batch Speed-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Send to Batch Speed Send to Batch Speed
ID djfcicmppldabihiegechhlilfglhebj
Offizielle URL https://chromewebstore.google.com/detail/send-to-batch-speed/djfcicmppldabihiegechhlilfglhebj
Beschreibung Adds a context menu option to send any page to Batch Speed
Dateigröße 4.17 KB
Installationsanzahl 92
Aktuelle Version 1.0
Letztes Update 2020-09-23
Veröffentlichungsdatum 2020-09-23
Entwickler https://defaced.dev
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/workeffortwaste/send-to-batchspeed
Hilfeseite URL https://github.com/workeffortwaste/send-to-batchspeed
Unterstützte Sprachen 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"
            ]
        }
    ]
}