QuickGUID Extension

Create a GUID Quickly.

QuickGUID Extensionคืออะไร?

QuickGUID Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย MindzGroup Technologies และคุณลักษณะหลักของมันคือ "Create a GUID Quickly."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Note: New packaged app has been released. You can install the application in case you need the out of browser access to this application. Also, please be notified that new enhancements will be targeted on packaged app on priority bases and the version may or may not get the feature. You can continue using this extension in case you need the web content integration for generating the GUID in input boxes.

Many time you need to get a guid as a developer. Having QuickGUID at your disposal makes your life easy in the times when you need a GUID quickly.

For sure this tool is not for every one, but yes if you need GUID regularly you need this tool.

Usage Instructions:
1. Click on the Extension icon and a popup will give you new guid.
2. Select the GUID, write click and select copy to copy it to clipboard.
3. Click on "Get New" to get a fresh GUID.
   or 
1. Right click on any textbox on the webpage
2. Select Get Quick GUID from the context menu to get a fresh GUID in place. (remember this action will replace the contents of the textbox in focus)

Whats New:
Version: 1.1.0.3
1. Resolved - jQuery map file issue.

Coming Up:
1. Option to create multiple GUID at a time.
2. Option to store the GUID.
3. More type / format of GUID.

Previous Versions:
Version: 1.1.0.2
1. Minor Enhancements.

Version: 1.1.0.1
1. Minor Internal Enhancements.

Version: 1.1.0.0
1. UI Enhancements.
2. Copy to Clipboard Button (new extension permission)
3. Bug Fixes

Version: 1.0.0.9
1. Options set in the popup window are effective in the GUID generated via textbox contextmenu.
2. Support for the file:// urls

Version: 1.0.0.8
1. Generate a GUID from within the webpage from the context menu  into a inputbox.

Version: 1.0.0.7
1. Restructured options screen.

Version: 1.0.0.6
1. Add the option to toggle hyphens.
2. Added the option to choose GUID Type being MS GUID or the Base64.

Version: 1.0.0.5
1. UI Enhancements
2. Add the option to toggle curly braces around the GUID and toggle character case.

Version: 1.0.0.4
1. Advance Mode to add the option to toggle curly braces around the GUID and toggle character case.
2. Web Fonts made available offline, which makes this app true offline app.
Version: 1.0.0.3
1. User Interface Improvements

Version: 1.0.0.2
1. Added "Get New" Button
2. Added "Close" Button

Version: 1.0.0.1
1. Added indication for offline support.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ QuickGUID Extension QuickGUID Extension
ID hcfcbpodejkknlplmeacpemmgpkhkcga
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/quickguid-extension/hcfcbpodejkknlplmeacpemmgpkhkcga
คำอธิบาย Create a GUID Quickly.
ขนาดไฟล์ 267 KB
จำนวนการติดตั้ง 495
เวอร์ชันปัจจุบัน 1.1.0.4
อัปเดตครั้งล่าสุด 2013-12-26
วันที่เผยแพร่ 2013-12-26
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา MindzGroup Technologies
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://plus.google.com/b/117271177848545687614/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "QuickGUID Extension",
    "short_name": "QuickGUID",
    "version": "1.1.0.4",
    "manifest_version": 2,
    "description": "Create a GUID Quickly.",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/hcfcbpodejkknlplmeacpemmgpkhkcga",
    "minimum_chrome_version": "17",
    "browser_action": {
        "default_title": "Quick GUID",
        "default_icon": "images\/logo24.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/jquery.min.js",
                "scripts\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "contextMenus",
        "tabs",
        "clipboardWrite"
    ],
    "background": {
        "scripts": [
            "scripts\/jquery.min.js",
            "scripts\/optionDatabase.js",
            "scripts\/Base64.js",
            "scripts\/background.js"
        ]
    },
    "icons": {
        "16": "images\/logo.png",
        "24": "images\/logo24.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "64": "images\/logo64.png",
        "72": "images\/logo72.png",
        "96": "images\/logo96.png",
        "128": "images\/logo128.png"
    },
    "web_accessible_resources": [
        "scripts\/jquery-2.0.3.min.map"
    ],
    "offline_enabled": true,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}