Chegg Link Finder

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

Что такое Chegg Link Finder?

Chegg Link Finder - это расширение Chrome, разработанное Hero HW Services, и его основная функция - "Displays a banner on top of the Chegg page with the true link to the question on the page.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Chegg Link Finder

Скачайте файлы расширений Chegg Link Finder в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Chegg Link Finder Chegg Link Finder
ID npfcifobeiabpojfjaokhmjndkdfjndh
Официальный URL https://chromewebstore.google.com/detail/chegg-link-finder/npfcifobeiabpojfjaokhmjndkdfjndh
Описание Displays a banner on top of the Chegg page with the true link to the question on the page.
Размер файла 486 KB
Количество установок 441
Текущая Версия 1.0
Последнее Обновление 2023-03-25
Дата публикации 2023-03-23
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Hero HW Services
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
            ]
        }
    ]
}