OIB Generator

Generate OIBs from context menu with this extension!

OIB Generator क्या है?

OIB Generator Ivan Brčić द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Generate OIBs from context menu with this extension!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में OIB Generator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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
}