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 |
| 官方URL | 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"
}
} | |