GUID Generator

Generate GUID and copy to clipboard with a single click

什麼是GUID Generator?

GUID Generator是由https://rcfed.com開發的Chrome擴展程式,該擴展的主要功能是“Generate GUID and copy to clipboard with a single click”。

擴展截圖

screenshot
screenshot
screenshot

下載GUID Generator擴展crx文件

下載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
官方網址 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'"
    }
}