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 |
Eメール | [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" ] } ] } |