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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
}