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.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου 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 |
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" ] } ] } |