Check Range
Shift-click first and last checkbox to select/deselect range.
什麼是Check Range?
Check Range是由Zurieee開發的Chrome擴展程式,該擴展的主要功能是“Shift-click first and last checkbox to select/deselect range.”。
擴展截圖
下載Check Range擴展crx文件
下載Check Range擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
The "Check Range" extension is designed to enhance the checkbox selection experience in webpages. It provides users with the ability to select checkboxes within a range by simply holding the Shift key. All you have to do is select the first and last checkbox while holding the Shift key and the extension will select all the checkboxes in the selected range. Original author: Jesse Ruderman - http://www.squarefree.com/2005/04/13/checkrange/ Chromified by Christian Bloch - https://github.com/cbloch Converted to Manifest v3 by Przemysław Żurek
擴展基本資訊
名稱 | Check Range |
ID | mnnlhhoblmkdamjbkmlolmpomhnplihm |
官方網址 | https://chromewebstore.google.com/detail/check-range/mnnlhhoblmkdamjbkmlolmpomhnplihm |
簡介 | Shift-click first and last checkbox to select/deselect range. |
檔案大小 | 92.84 KB |
安裝次數 | 1,613 |
目前版本 | 1.5 |
更新時間 | 2023-06-12 |
上架時間 | 2023-06-11 |
評分 | 4.57/5 共 7 次評分 |
開發者 | Zurieee |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Check Range", "version": "1.5", "manifest_version": 3, "description": "Shift-click first and last checkbox to select\/deselect range.", "icons": { "16": "16.png", "24": "24.png", "32": "32.png", "48": "48.png", "64": "64.png", "72": "72.png", "128": "128.png", "256": "256.png", "512": "512.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "check_range.user.js" ] } ], "permissions": [], "content_security_policy": [] } |