OIB Generator

Generate OIBs from context menu with this extension!

什麼是OIB Generator?

OIB Generator是由Ivan Brčić開發的Chrome擴展程式,該擴展的主要功能是“Generate OIBs from context menu with this extension!”。

擴展截圖

screenshot

下載OIB Generator擴展crx文件

下載OIB Generator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 OIB Generator OIB Generator
ID kjhgcmcnfeelonhdmfmneiekfcicekfn
官方網址 https://chromewebstore.google.com/detail/oib-generator/kjhgcmcnfeelonhdmfmneiekfcicekfn
簡介 Generate OIBs from context menu with this extension!
檔案大小 9.55 KB
安裝次數 70
目前版本 1.0
更新時間 2021-03-09
上架時間 2021-03-09
評分 5.00/5 共 2 次評分
開發者 Ivan Brčić
電子郵箱 [email protected]
付費類型 free
支援的語言 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
}