OIB Generator

Generate OIBs from context menu with this extension!

OIB Generator là gì?

OIB Generator là một tiện ích mở rộng Chrome được phát triển bởi Ivan Brčić, và tính năng chính của nó là "Generate OIBs from context menu with this extension!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng OIB Generator

Tải xuống các tệp mở rộng OIB Generator 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

                        OIB Generator is a Chrome extension designed to generate valid OIBs. OIB is personal identification number used in Croatia. If you are outside of Croatia it is unlikelly that this will be of much use to you.

Usage instructions
Install the extension and right Click on any input field in which you would like to insert new OIB. Menu item "Generate OIB" will be shown and upon clicking it, new OIB will be generated and inserted into the field.

How does it work
OIBs are generated by first generating 10 random digits and then calculating the final, 11th, control digit that is used to validate the OIB. The last digit is generated from first 10 digit using the ISO7064 (MOD 11,10) specification.

This extension just generates OIBs that pass the OIB validations. It does not generate actual OIBs used by the citizens and companies of Croatia. OIBs generated with this extension should not be used in production environments.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên OIB Generator OIB Generator
ID kjhgcmcnfeelonhdmfmneiekfcicekfn
URL Chính Thức https://chromewebstore.google.com/detail/oib-generator/kjhgcmcnfeelonhdmfmneiekfcicekfn
Mô tả Generate OIBs from context menu with this extension!
Kích Thước Tệp 9.55 KB
Số Lần Cài Đặt 70
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-03-09
Ngày Phát Hành 2021-03-09
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Ivan Brčić
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OIB Generator",
    "version": "1.0",
    "description": "Generate OIBs from context menu with this extension!",
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/generate-oib-script.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "icons": {
        "128": "assets\/icon-128.png"
    },
    "manifest_version": 2
}