UUID Finder
This extension will automatically display the UUID at the top of the page.
UUID Finder là gì?
UUID Finder là một tiện ích mở rộng Chrome được phát triển bởi Professor Premium, và tính năng chính của nó là "This extension will automatically display the UUID at the top of the page.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng UUID Finder
Tải xuống các tệp mở rộng UUID Finder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | UUID Finder |
ID | hdenpcfifhgoabfkmikpfbgoldfnddjk |
URL Chính Thức | https://chromewebstore.google.com/detail/uuid-finder/hdenpcfifhgoabfkmikpfbgoldfnddjk |
Mô tả | This extension will automatically display the UUID at the top of the page. |
Kích Thước Tệp | 16.24 KB |
Số Lần Cài Đặt | 1,072 |
Phiên Bản Hiện Tại | 0.0.3 |
Cập Nhật Lần Cuối | 2021-10-27 |
Ngày Phát Hành | 2021-10-22 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Professor Premium |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/gNabeen/UUID-Finder/ |
URL Trang Chính Sách Bảo Mật | https://www.chegg.com/privacypolicy |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |