Auto numbering Extension

This app allows you to generate consecutive numbers

What is Auto numbering Extension?

Auto numbering Extension is a Chrome extension developed by chris-brien glaze, and its main feature is "This app allows you to generate consecutive numbers".

Extension Screenshots

screenshot

Download Auto numbering Extension Extension CRX File

Download Auto numbering Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This application will generate a series of consecutive numbers and paste them in any editable field. Ex. 1,2,3,4                    

Extension Basic Information

Name Auto numbering Extension Auto numbering Extension
ID adbmoofdncnefcbapchcjbmiafgghoka
Official URL https://chromewebstore.google.com/detail/auto-numbering-extension/adbmoofdncnefcbapchcjbmiafgghoka
Description This app allows you to generate consecutive numbers
File Size 62.14 KB
Installation Count 66
Current Version 2.0
Last Updated 2022-03-25
Publish Date 2022-02-19
Rating 5.00/5 Total 1 Ratings
Developer chris-brien glaze
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}