GUID Injector
Creates a unique GUID/UUID and inserts it into a text field
ما هو GUID Injector؟
GUID Injector هو إضافة Chrome تم تطويرها بواسطة https://sites.google.com/site/nyteshade، والميزة الرئيسية لها هي "Creates a unique GUID/UUID and inserts it into a text field".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة GUID Injector
قم بتنزيل ملفات الامتداد GUID Injector بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
| عنوان 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
} | |