Send to Batch Speed
Adds a context menu option to send any page to Batch Speed
Hvad er Send to Batch Speed?
Send to Batch Speed er en Chrome-udvidelse udviklet af https://defaced.dev, og dens hovedfunktion er "Adds a context menu option to send any page to Batch Speed".
Udvidelsesskærmbilleder
Download Send to Batch Speed-udvidelses-CRX-fil
Download Send to Batch Speed-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Quickly launch a Batch Speed (https://batchspeed.com/) test for any site.
Grundlæggende oplysninger om udvidelsen
Navn | Send to Batch Speed |
ID | djfcicmppldabihiegechhlilfglhebj |
Officiel URL | https://chromewebstore.google.com/detail/send-to-batch-speed/djfcicmppldabihiegechhlilfglhebj |
Beskrivelse | Adds a context menu option to send any page to Batch Speed |
Filstørrelse | 4.17 KB |
Antal Installationer | 92 |
Nuværende Version | 1.0 |
Senest Opdateret | 2020-09-23 |
Udgivelsesdato | 2020-09-23 |
Udvikler | https://defaced.dev |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/workeffortwaste/send-to-batchspeed |
Hjælpeside-URL | https://github.com/workeffortwaste/send-to-batchspeed |
Understøttede Sprog | 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" ] } ] } |