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"입니다.
확장 프로그램 스크린샷
GUID Generator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
도움말 페이지 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'" } } |