Send to Batch Speed
Adds a context menu option to send any page to Batch Speed
Wat is Send to Batch Speed?
Send to Batch Speed is een Chrome-extensie ontwikkeld door https://defaced.dev, en de belangrijkste functie is "Adds a context menu option to send any page to Batch Speed".
Extensie Screenshots
Download het CRX-bestand van de extensie Send to Batch Speed
Download Send to Batch Speed-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Quickly launch a Batch Speed (https://batchspeed.com/) test for any site. Basisinformatie over de Extensie
| Naam | |
| ID | djfcicmppldabihiegechhlilfglhebj |
| Officiële URL | https://chromewebstore.google.com/detail/send-to-batch-speed/djfcicmppldabihiegechhlilfglhebj |
| Beschrijving | Adds a context menu option to send any page to Batch Speed |
| Bestandsgrootte | 4.17 KB |
| Aantal Installaties | 92 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2020-09-23 |
| Publicatiedatum | 2020-09-23 |
| Ontwikkelaar | https://defaced.dev |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/workeffortwaste/send-to-batchspeed |
| Help Pagina-URL | https://github.com/workeffortwaste/send-to-batchspeed |
| Ondersteunde Talen | 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"
]
}
]
} | |