Chegg Link Finder
Displays a banner on top of the Chegg page with the true link to the question on the page.
Hvad er Chegg Link Finder?
Chegg Link Finder er en Chrome-udvidelse udviklet af Hero HW Services, og dens hovedfunktion er "Displays a banner on top of the Chegg page with the true link to the question on the page.".
Udvidelsesskærmbilleder
Download Chegg Link Finder-udvidelses-CRX-fil
Download Chegg Link Finder-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Chegg Link Finder |
ID | npfcifobeiabpojfjaokhmjndkdfjndh |
Officiel URL | https://chromewebstore.google.com/detail/chegg-link-finder/npfcifobeiabpojfjaokhmjndkdfjndh |
Beskrivelse | Displays a banner on top of the Chegg page with the true link to the question on the page. |
Filstørrelse | 486 KB |
Antal Installationer | 441 |
Nuværende Version | 1.0 |
Senest Opdateret | 2023-03-25 |
Udgivelsesdato | 2023-03-23 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | Hero HW Services |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } ] } |