Chegg Link Finder

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

O que é Chegg Link Finder?

Chegg Link Finder é uma extensão do Chrome desenvolvida por Hero HW Services, e sua principal característica é "Displays a banner on top of the Chegg page with the true link to the question on the page.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Chegg Link Finder

Baixe arquivos de extensão Chegg Link Finder no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Chegg Link Finder Chegg Link Finder
ID npfcifobeiabpojfjaokhmjndkdfjndh
URL Oficial https://chromewebstore.google.com/detail/chegg-link-finder/npfcifobeiabpojfjaokhmjndkdfjndh
Descrição Displays a banner on top of the Chegg page with the true link to the question on the page.
Tamanho do Arquivo 486 KB
Contagem de Instalações 441
Versão Atual 1.0
Última Atualização 2023-03-25
Data de Publicação 2023-03-23
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Hero HW Services
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}