Auto numbering Extension
This app allows you to generate consecutive numbers
Auto numbering Extension là gì?
Auto numbering Extension là một tiện ích mở rộng Chrome được phát triển bởi chris-brien glaze, và tính năng chính của nó là "This app allows you to generate consecutive numbers".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Auto numbering Extension
Tải xuống các tệp mở rộng Auto numbering Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This application will generate a series of consecutive numbers and paste them in any editable field. Ex. 1,2,3,4
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Auto numbering Extension |
ID | adbmoofdncnefcbapchcjbmiafgghoka |
URL Chính Thức | https://chromewebstore.google.com/detail/auto-numbering-extension/adbmoofdncnefcbapchcjbmiafgghoka |
Mô tả | This app allows you to generate consecutive numbers |
Kích Thước Tệp | 62.14 KB |
Số Lần Cài Đặt | 66 |
Phiên Bản Hiện Tại | 2.0 |
Cập Nhật Lần Cuối | 2022-03-25 |
Ngày Phát Hành | 2022-02-19 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | chris-brien glaze |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |