Chegg Link Finder

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

Co je Chegg Link Finder?

Chegg Link Finder je rozšíření Chrome vyvinuté Hero HW Services, a jeho hlavní funkcí je „Displays a banner on top of the Chegg page with the true link to the question on the page.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Chegg Link Finder

Stáhněte si soubory rozšíření Chegg Link Finder ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Chegg Link Finder Chegg Link Finder
ID npfcifobeiabpojfjaokhmjndkdfjndh
Oficiální URL https://chromewebstore.google.com/detail/chegg-link-finder/npfcifobeiabpojfjaokhmjndkdfjndh
Popis Displays a banner on top of the Chegg page with the true link to the question on the page.
Velikost souboru 486 KB
Počet instalací 441
Aktuální Verze 1.0
Poslední Aktualizace 2023-03-25
Datum Vydání 2023-03-23
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Hero HW Services
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}