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”。
扩展截图
下载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 |
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 |
电子邮箱 | [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 } |