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. 擴展基本資訊
| 名稱 | |
| ID | fbikgchaodmoekfibbffelacabfjomjb |
| 官方網址 | 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
} | |