Send to Batch Speed
Adds a context menu option to send any page to Batch Speed
什么是Send to Batch Speed?
Send to Batch Speed是由https://defaced.dev开发的Chrome扩展程序,该扩展的主要功能是“Adds a context menu option to send any page to Batch Speed”。
扩展截图
下载Send to Batch Speed扩展crx文件
下载Send to Batch Speed扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Quickly launch a Batch Speed (https://batchspeed.com/) test for any site.
扩展基本信息
名称 | Send to Batch Speed |
ID | djfcicmppldabihiegechhlilfglhebj |
官方URL | https://chromewebstore.google.com/detail/send-to-batch-speed/djfcicmppldabihiegechhlilfglhebj |
简介 | Adds a context menu option to send any page to Batch Speed |
文件大小 | 4.17 KB |
安装次数 | 92 |
当前版本 | 1.0 |
更新时间 | 2020-09-23 |
上架时间 | 2020-09-23 |
开发者 | https://defaced.dev |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/workeffortwaste/send-to-batchspeed |
帮助页面URL | https://github.com/workeffortwaste/send-to-batchspeed |
支持的语言 | 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" ] } ] } |