Chegg Link Finder
Displays a banner on top of the Chegg page with the true link to the question on the page.
¿Qué es Chegg Link Finder?
Chegg Link Finder es una extensión de Chrome desarrollada por Hero HW Services, y su función principal es "Displays a banner on top of the Chegg page with the true link to the question on the page.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Chegg Link Finder
Descarga archivos de extensión Chegg Link Finder en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Chegg Link Finder |
ID | npfcifobeiabpojfjaokhmjndkdfjndh |
URL Oficial | https://chromewebstore.google.com/detail/chegg-link-finder/npfcifobeiabpojfjaokhmjndkdfjndh |
Descripción | Displays a banner on top of the Chegg page with the true link to the question on the page. |
Tamaño del Archivo | 486 KB |
Cantidad de Instalaciones | 441 |
Versión Actual | 1.0 |
Última Actualización | 2023-03-25 |
Fecha de Publicación | 2023-03-23 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | Hero HW Services |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } ] } |