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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays a banner on top of the Chegg page with the true link to the question on the page."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Chegg Link Finder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
आधिकारिक 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" ] } ] } |