OIB Generator

Generate OIBs from context menu with this extension!

Was ist OIB Generator?

OIB Generator ist eine Chrome-Erweiterung, die von Ivan Brčić entwickelt wurde, und ihr Hauptmerkmal ist "Generate OIBs from context menu with this extension!".

Erweiterungsscreenshots

screenshot

OIB Generator-Erweiterungs-CRX-Datei herunterladen

Laden Sie OIB Generator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name OIB Generator OIB Generator
ID kjhgcmcnfeelonhdmfmneiekfcicekfn
Offizielle URL https://chromewebstore.google.com/detail/oib-generator/kjhgcmcnfeelonhdmfmneiekfcicekfn
Beschreibung Generate OIBs from context menu with this extension!
Dateigröße 9.55 KB
Installationsanzahl 70
Aktuelle Version 1.0
Letztes Update 2021-03-09
Veröffentlichungsdatum 2021-03-09
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Ivan Brčić
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
}