SWIFT Benchmark

Free extension for testing computation speed. Benchmark

Cos'è SWIFT Benchmark?

SWIFT Benchmark è un'estensione di Chrome sviluppata da SWIFTRELAY, e la sua funzione principale è "Free extension for testing computation speed. Benchmark".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione SWIFT Benchmark

Scarica i file di estensione SWIFT Benchmark in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        A simple tool to check your computer's processing power dedicated to extensions                    

Informazioni di Base sull'Estensione

Nome SWIFT Benchmark SWIFT Benchmark
ID lilmbjmnpgiaehkldplmoeibpcgimind
URL Ufficiale https://chrome.google.com/webstore/detail/swift-benchmark/lilmbjmnpgiaehkldplmoeibpcgimind
Descrizione Free extension for testing computation speed. Benchmark
Dimensione del File 67.68 KB
Conteggio Installazioni 30
Versione Corrente 1.4
Ultimo Aggiornamento 2022-03-26
Data di Pubblicazione 2021-10-11
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore SWIFTRELAY
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://swiftrelay.io/privacy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SWIFT Benchmark",
    "manifest_version": 3,
    "short_name": "swift_benchmark",
    "version": "1.4",
    "author": "Premiere IT",
    "description": "Free extension for testing computation speed. Benchmark",
    "icons": {
        "16": "icons\/scale.png",
        "32": "icons\/scale.png",
        "48": "icons\/scale.png",
        "64": "icons\/scale.png",
        "128": "icons\/scale.png"
    },
    "permissions": [
        "scripting",
        "background",
        "alarms"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/roborelay.io\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_title": "...",
        "default_icon": "icons\/scale.png",
        "default_popup": "index.html"
    },
    "host_permissions": [
        "*:\/\/roborelay.io\/*"
    ]
}