Chegg Link Finder
Displays a banner on top of the Chegg page with the true link to the question on the page.
Qu'est-ce que Chegg Link Finder ?
Chegg Link Finder est une extension Chrome développée par Hero HW Services, et sa fonction principale est "Displays a banner on top of the Chegg page with the true link to the question on the page.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Chegg Link Finder
Téléchargez les fichiers d'extension Chegg Link Finder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Chegg Link Finder |
ID | npfcifobeiabpojfjaokhmjndkdfjndh |
URL Officiel | https://chromewebstore.google.com/detail/chegg-link-finder/npfcifobeiabpojfjaokhmjndkdfjndh |
Description | Displays a banner on top of the Chegg page with the true link to the question on the page. |
Taille du Fichier | 486 KB |
Nombre d'Installations | 441 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2023-03-25 |
Date de Publication | 2023-03-23 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Hero HW Services |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |