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.”。
擴展截圖
下載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 |
ID | npfcifobeiabpojfjaokhmjndkdfjndh |
官方網址 | 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" ] } ] } |