GUID Injector
Creates a unique GUID/UUID and inserts it into a text field
GUID Injector क्या है?
GUID Injector https://sites.google.com/site/nyteshade द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Creates a unique GUID/UUID and inserts it into a text field"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GUID Injector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This chrome extension will add an item to your right click / context menu when right clicking on a text input field of a web page. Choosing "Generate GUID / UUID" will then generate a unique id and *replace* the contents of the field with the new id.
एक्सटेंशन की मूल जानकारी
नाम | GUID Injector |
ID | fbikgchaodmoekfibbffelacabfjomjb |
आधिकारिक URL | https://chromewebstore.google.com/detail/guid-injector/fbikgchaodmoekfibbffelacabfjomjb |
विवरण | Creates a unique GUID/UUID and inserts it into a text field |
फ़ाइल का आकार | 21.05 KB |
स्थापना संख्या | 55 |
वर्तमान संस्करण | 2.0 |
अंतिम अपडेट | 2022-01-11 |
प्रकाशन तिथि | 2013-02-13 |
रेटिंग | 1.25/5 कुल 4 रेटिंग्स |
डेवलपर | https://sites.google.com/site/nyteshade |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "GUID Injector", "description": "Creates a unique GUID\/UUID and inserts it into a text field", "version": "2.0", "permissions": [ "contextMenus" ], "background": { "service_worker": "guid_uuid.js" }, "manifest_version": 3, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "tellmewhen.js" ], "run_at": "document_end" } ], "icons": { "128": "uuid.png", "48": "uuid_48.png", "16": "uuid_16.png" }, "offline_enabled": true } |