Chegg Link Finder

Displays a banner on top of the Chegg page with the true link to the question on the page.

Cos'è Chegg Link Finder?

Chegg Link Finder è un'estensione di Chrome sviluppata da Hero HW Services, e la sua funzione principale è "Displays a banner on top of the Chegg page with the true link to the question on the page.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Chegg Link Finder

Scarica i file di estensione Chegg Link Finder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Chegg Link Finder Chegg Link Finder
ID npfcifobeiabpojfjaokhmjndkdfjndh
URL Ufficiale https://chromewebstore.google.com/detail/chegg-link-finder/npfcifobeiabpojfjaokhmjndkdfjndh
Descrizione Displays a banner on top of the Chegg page with the true link to the question on the page.
Dimensione del File 486 KB
Conteggio Installazioni 441
Versione Corrente 1.0
Ultimo Aggiornamento 2023-03-25
Data di Pubblicazione 2023-03-23
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Hero HW Services
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}