IMEI Generator

Generate IMEI (3 types) and write to current active field

Vad är IMEI Generator?

IMEI Generator är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Generate IMEI (3 types) and write to current active field".

Tilläggsskärmbilder

screenshot

Ladda ner IMEI Generator-förlängningens CRX-fil

Ladda ner IMEI Generator-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Rather than typing in an IMEI number this extension allows you to right-click and select either 000000000000000, 123456789123789 or generates a random IMEI that conforms to the luhn algorithm.
Options allow you to decide whether you want all options showing or not.
If you only select one option, only this option will show as the main link when you right-click.
Very useful when testing, testing, testing.
v2 - now works with iframes
v3 - cosmetic change                    

Grundläggande Information om Tillägg

Namn IMEI Generator IMEI Generator
ID bdpdidelhbdjmlfekhpamddfpbgjjpjj
Officiell webbadress https://chromewebstore.google.com/detail/imei-generator/bdpdidelhbdjmlfekhpamddfpbgjjpjj
Beskrivning Generate IMEI (3 types) and write to current active field
Filstorlek 9.64 KB
Antal Installationer 209
Aktuell Version 0.3
Senast Uppdaterad 2019-12-02
Publiceringsdatum 2019-12-02
Betyg 3.00/5 Totalt 2 Betyg
Utvecklare Unknown
Betalningssätt free
Stödda Språk en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IMEI Generator",
    "description": "Generate IMEI (3 types) and write to current active field",
    "version": "0.3",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "js\/background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "128": "images\/icon.png"
    }
}