GUID Generator
Generate GUID and copy to clipboard with a single click
ما هو GUID Generator؟
GUID Generator هو إضافة Chrome تم تطويرها بواسطة https://rcfed.com، والميزة الرئيسية لها هي "Generate GUID and copy to clipboard with a single click".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة GUID Generator
قم بتنزيل ملفات الامتداد GUID Generator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Generate and copy GUID(s) to clipboard with a single click. As a developer you often work with Global Unique Identifiers (GUID). Use this extension to create up to ten GUIDs by a single click and automatically copy to clipboard. Using the options, you can choose: - to generate between 1-10 GUIDs by a single click - to enable automatically copy GUIDs to clipboard when generated - to enable automatically generate GUIDs when opening this extension - if GUIDs must contain dashes - if GUIDs must be capitalized - format of GUIDs that are generated (Microsoft/Base64 encoded) - between different delimiter when copying multiple GUIDs to clipboard The extension supports browser Dark Mode. Feature requests are most welcomed :-)
معلومات أساسية عن التمديد
الاسم | GUID Generator |
ID | pmhhophjkcdolhpfbepkdpojoilnflmf |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/guid-generator/pmhhophjkcdolhpfbepkdpojoilnflmf |
الوصف | Generate GUID and copy to clipboard with a single click |
حجم الملف | 49.25 KB |
عدد التثبيتات | 1,000 |
النسخة الحالية | 1.8 |
آخر تحديث | 2022-05-24 |
تاريخ النشر | 2020-06-01 |
تقييم | 4.50/5 مجموع تقييمات 4 |
المطور | https://rcfed.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://rcfed.com/Browser/GUIDGenerator |
عنوان صفحة المساعدة | https://rcfed.com/Contact |
عنوان صفحة سياسة الخصوصية | https://rcfed.com/Privacy |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "GUID Generator", "short_name": "GUID Generator", "description": "Generate GUID and copy to clipboard with a single click", "author": "Rasmus Christiansen (rcfed.com)", "homepage_url": "https:\/\/rcfed.com\/Browser\/GUIDGenerator", "version": "1.8", "action": { "default_icon": { "57": "\/icon\/icon57.png", "96": "\/icon\/icon96.png", "128": "\/icon\/icon128.png", "192": "\/icon\/icon192.png" }, "default_popup": "popup.html", "default_title": "rcFederation GUID Generator" }, "permissions": [ "contextMenus" ], "background": { "service_worker": "background.js" }, "icons": { "57": "\/icon\/icon57.png", "96": "\/icon\/icon96.png", "128": "\/icon\/icon128.png", "192": "\/icon\/icon192.png" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } } |