Chegg Link Finder

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

Wat is Chegg Link Finder?

Chegg Link Finder is een Chrome-extensie ontwikkeld door Hero HW Services, en de belangrijkste functie is "Displays a banner on top of the Chegg page with the true link to the question on the page.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Chegg Link Finder

Download Chegg Link Finder-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Chegg Link Finder Chegg Link Finder
ID npfcifobeiabpojfjaokhmjndkdfjndh
Officiële URL https://chromewebstore.google.com/detail/chegg-link-finder/npfcifobeiabpojfjaokhmjndkdfjndh
Beschrijving Displays a banner on top of the Chegg page with the true link to the question on the page.
Bestandsgrootte 486 KB
Aantal Installaties 441
Huidige Versie 1.0
Laatst Bijgewerkt 2023-03-25
Publicatiedatum 2023-03-23
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Hero HW Services
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}