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"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GUID Generator

ดาวน์โหลดไฟล์ส่วนขยาย GUID Generator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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
URL หน้าช่วยเหลือ https://rcfed.com/Contact
URL หน้านโยบายความเป็นส่วนตัว 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'"
    }
}