Chegg Link Finder

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

What is Chegg Link Finder?

Chegg Link Finder is a Chrome extension developed by Hero HW Services, and its main feature is "Displays a banner on top of the Chegg page with the true link to the question on the page.".

Extension Screenshots

screenshot
screenshot

Download Chegg Link Finder Extension CRX File

Download Chegg Link Finder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Chegg Link Finder Chegg Link Finder
ID npfcifobeiabpojfjaokhmjndkdfjndh
Official URL 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.
File Size 486 KB
Installation Count 441
Current Version 1.0
Last Updated 2023-03-25
Publish Date 2023-03-23
Rating 5.00/5 Total 1 Ratings
Developer Hero HW Services
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}