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 là gì?

Chegg Link Finder là một tiện ích mở rộng Chrome được phát triển bởi Hero HW Services, và tính năng chính của nó là "Displays a banner on top of the Chegg page with the true link to the question on the page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Chegg Link Finder

Tải xuống các tệp mở rộng Chegg Link Finder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Chegg Link Finder Chegg Link Finder
ID npfcifobeiabpojfjaokhmjndkdfjndh
URL Chính Thức https://chromewebstore.google.com/detail/chegg-link-finder/npfcifobeiabpojfjaokhmjndkdfjndh
Mô tả Displays a banner on top of the Chegg page with the true link to the question on the page.
Kích Thước Tệp 486 KB
Số Lần Cài Đặt 441
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-03-25
Ngày Phát Hành 2023-03-23
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Hero HW Services
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}