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.                     擴展基本資訊
| 名稱 |   |  
| ID | djfcicmppldabihiegechhlilfglhebj | 
| 官方網址 | 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"
            ]
        }
    ]
}  |  |