Auto numbering Extension

This app allows you to generate consecutive numbers

Auto numbering Extensionคืออะไร?

Auto numbering Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chris-brien glaze และคุณลักษณะหลักของมันคือ "This app allows you to generate consecutive numbers"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto numbering Extension

ดาวน์โหลดไฟล์ส่วนขยาย 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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Auto numbering Extension Auto numbering Extension
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"
    }
}