Chegg Link Finder
Displays a banner on top of the Chegg page with the true link to the question on the page.
Chegg Link Finderคืออะไร?
Chegg Link Finder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Hero HW Services และคุณลักษณะหลักของมันคือ "Displays a banner on top of the Chegg page with the true link to the question on the page."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chegg Link Finder
ดาวน์โหลดไฟล์ส่วนขยาย Chegg Link Finder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension will automatically display the UUID and true Question Link at the top of the page. 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 Question Link and UUID. This extension simply automates that. It does not show answer or anything that violates Chegg TOS.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Chegg Link Finder |
ID | npfcifobeiabpojfjaokhmjndkdfjndh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/chegg-link-finder/npfcifobeiabpojfjaokhmjndkdfjndh |
คำอธิบาย | Displays a banner on top of the Chegg page with the true link to the question on the page. |
ขนาดไฟล์ | 486 KB |
จำนวนการติดตั้ง | 441 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2023-03-25 |
วันที่เผยแพร่ | 2023-03-23 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Hero HW Services |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Chegg Link Finder", "version": "1.0", "description": "Displays a banner on top of the Chegg page with the true link to the question on the page.", "permissions": [], "action": { "default_popup": "popup.html", "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.chegg.com\/*" ], "js": [ "content.js" ], "css": [ "styles.css" ] } ] } |