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はHero HW Servicesによって開発されたChromeの拡張機能で、その主な機能は「Displays a banner on top of the Chegg page with the true link to the question on the page.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Chegg Link Finder拡張機能のCRXファイルをダウンロード

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
Eメール [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"
            ]
        }
    ]
}