Send to Batch Speed

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

Qu'est-ce que Send to Batch Speed ?

Send to Batch Speed est une extension Chrome développée par https://defaced.dev, et sa fonction principale est "Adds a context menu option to send any page to Batch Speed".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Send to Batch Speed

Téléchargez les fichiers d'extension Send to Batch Speed au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Send to Batch Speed Send to Batch Speed
ID djfcicmppldabihiegechhlilfglhebj
URL Officiel https://chromewebstore.google.com/detail/send-to-batch-speed/djfcicmppldabihiegechhlilfglhebj
Description Adds a context menu option to send any page to Batch Speed
Taille du Fichier 4.17 KB
Nombre d'Installations 92
Version Actuelle 1.0
Dernière Mise à Jour 2020-09-23
Date de Publication 2020-09-23
Développeur https://defaced.dev
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/workeffortwaste/send-to-batchspeed
URL de la Page d'Aide https://github.com/workeffortwaste/send-to-batchspeed
Langues Prises en Charge 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"
            ]
        }
    ]
}