UUID Finder
This extension will automatically display the UUID at the top of the page.
UUID Finderคืออะไร?
UUID Finder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Professor Premium และคุณลักษณะหลักของมันคือ "This extension will automatically display the UUID at the top of the page."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย UUID Finder
ดาวน์โหลดไฟล์ส่วนขยาย UUID Finder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension will automatically filter the page source code for Chegg URLs and display the UUID at the top of the page. You could inspect Chegg URLs and hit CTRL+F to find the UUID. This extension simply automates that. It does not show answer or anything that violates Chegg TOS.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | UUID Finder |
ID | hdenpcfifhgoabfkmikpfbgoldfnddjk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/uuid-finder/hdenpcfifhgoabfkmikpfbgoldfnddjk |
คำอธิบาย | This extension will automatically display the UUID at the top of the page. |
ขนาดไฟล์ | 16.24 KB |
จำนวนการติดตั้ง | 1,072 |
เวอร์ชันปัจจุบัน | 0.0.3 |
อัปเดตครั้งล่าสุด | 2021-10-27 |
วันที่เผยแพร่ | 2021-10-22 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Professor Premium |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/gNabeen/UUID-Finder/ |
URL หน้านโยบายความเป็นส่วนตัว | https://www.chegg.com/privacypolicy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "UUID Finder", "version": "0.0.3", "manifest_version": 2, "description": "This extension will automatically display the UUID at the top of the page.", "homepage_url": "http:\/\/www.professorbot.me", "icons": { "16": "icons\/icon-19.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "default_locale": "en", "browser_action": { "default_icon": "icons\/icon-19.png", "default_title": "UUID Finder", "default_popup": "src\/browser_action\/browser_action.html" }, "permissions": [ "https:\/\/www.chegg.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.chegg.com\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |