GUID Injector

Creates a unique GUID/UUID and inserts it into a text field

GUID Injectorとは何ですか?

GUID Injectorはhttps://sites.google.com/site/nyteshadeによって開発されたChromeの拡張機能で、その主な機能は「Creates a unique GUID/UUID and inserts it into a text field」です。

拡張機能のスクリーンショット

screenshot

GUID Injector拡張機能のCRXファイルをダウンロード

GUID Injector拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This chrome extension will add an item to your right click / context menu when right clicking on a text input field of a web page. Choosing "Generate GUID / UUID" will then generate a unique id and  *replace* the contents of the field with the new id.                    

拡張機能の基本情報

名前 GUID Injector GUID Injector
ID fbikgchaodmoekfibbffelacabfjomjb
公式URL https://chromewebstore.google.com/detail/guid-injector/fbikgchaodmoekfibbffelacabfjomjb
説明 Creates a unique GUID/UUID and inserts it into a text field
ファイルサイズ 21.05 KB
インストール数 55
現在のバージョン 2.0
最終更新日 2022-01-11
公開日 2013-02-13
評価 1.25/5 合計 4 レビュー
開発者 https://sites.google.com/site/nyteshade
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GUID Injector",
    "description": "Creates a unique GUID\/UUID and inserts it into a text field",
    "version": "2.0",
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "service_worker": "guid_uuid.js"
    },
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "tellmewhen.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "uuid.png",
        "48": "uuid_48.png",
        "16": "uuid_16.png"
    },
    "offline_enabled": true
}