Send to Batch Speed
Adds a context menu option to send any page to Batch Speed
Cos'è Send to Batch Speed?
Send to Batch Speed è un'estensione di Chrome sviluppata da https://defaced.dev, e la sua funzione principale è "Adds a context menu option to send any page to Batch Speed".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Send to Batch Speed
Scarica i file di estensione Send to Batch Speed 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
Quickly launch a Batch Speed (https://batchspeed.com/) test for any site.
Informazioni di Base sull'Estensione
Nome | Send to Batch Speed |
ID | djfcicmppldabihiegechhlilfglhebj |
URL Ufficiale | https://chromewebstore.google.com/detail/send-to-batch-speed/djfcicmppldabihiegechhlilfglhebj |
Descrizione | Adds a context menu option to send any page to Batch Speed |
Dimensione del File | 4.17 KB |
Conteggio Installazioni | 92 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2020-09-23 |
Data di Pubblicazione | 2020-09-23 |
Sviluppatore | https://defaced.dev |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/workeffortwaste/send-to-batchspeed |
URL della Pagina di Aiuto | https://github.com/workeffortwaste/send-to-batchspeed |
Lingue Supportate | 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" ] } ] } |