Auto numbering Extension
This app allows you to generate consecutive numbers
什麼是Auto numbering Extension?
Auto numbering Extension是由chris-brien glaze開發的Chrome擴展程式,該擴展的主要功能是“This app allows you to generate consecutive numbers”。
擴展截圖
下載Auto numbering Extension擴展crx文件
下載Auto numbering Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This application will generate a series of consecutive numbers and paste them in any editable field. Ex. 1,2,3,4 擴展基本資訊
| 名稱 | |
| ID | adbmoofdncnefcbapchcjbmiafgghoka |
| 官方網址 | https://chromewebstore.google.com/detail/auto-numbering-extension/adbmoofdncnefcbapchcjbmiafgghoka |
| 簡介 | This app allows you to generate consecutive numbers |
| 檔案大小 | 62.14 KB |
| 安裝次數 | 66 |
| 目前版本 | 2.0 |
| 更新時間 | 2022-03-25 |
| 上架時間 | 2022-02-19 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | chris-brien glaze |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Auto numbering Extension",
"description": "This app allows you to generate consecutive numbers",
"version": "2.0",
"options_page": "generator.html?opt=pg",
"background": {
"service_worker": "background.js"
},
"commands": {
"InsertNum": {
"suggested_key": {
"default": "Ctrl+Shift+2",
"mac": "Command+Shift+2"
},
"description": "Insert cConsecutive Number",
"global": true
}
},
"permissions": [
"storage",
"activeTab",
"contextMenus"
],
"content_scripts": [
{
"matches": [
"https:\/\/app.asana.com\/*",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content-script.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"host_permissions": [
"*:\/\/*\/*"
],
"action": {
"default_title": "Glaze NumberGenerator",
"default_popup": "generator.html",
"default_icon": {
"16": "logo.png",
"32": "logo.png",
"72": "logo.png",
"128": "logo.png",
"512": "logo.png"
}
},
"icons": {
"16": "logo.png",
"32": "logo.png",
"72": "logo.png",
"128": "logo.png",
"512": "logo.png"
}
} | |