Color Links
This extension allows you to change the color of your visited links
Τι είναι το Color Links;
Το Color Links είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον therynamo, και η κύρια λειτουργία του είναι "This extension allows you to change the color of your visited links".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Color Links
Λήψη αρχείων επέκτασης Color Links σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Color Links enhances how users navigate visited page search results on the web by allowing the user to select the color of the visited link. Color Links is an excellent enhancement for color deficient users. The ability to control the color of the visited site link, improves the visual comfort of the search by creating a color contrast that is appealing to the user. Browsing search results on google.com can be overwhelming, especially when the default colors for referencing visited links can be similar for end users with decreased ability to discern colors. Multiple color options are available in this light weight extension that will help you immediately sort out your visited links. Color Links is not only light weight but it is only one click. One click and the visited link stands out giving you quick visual confirmation of where you have already been. To get started, navigate to a page, toggle color links to the on (or green) position, and select your color. You can turn color links off at any time if you'd like by setting the toggle to off (or red). Developer Notes: If you're interested in the project, or maybe you want to contribute, be sure to check out the open source repository hosted here https://github.com/therynamo/color-links. View the README for instructions on contributing. All contributions are welcomed, and we will get to them as soon as we can.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Color Links |
ID | hiponeioelghhaljfflaaflpccedbdem |
Επίσημο URL | https://chromewebstore.google.com/detail/color-links/hiponeioelghhaljfflaaflpccedbdem |
Περιγραφή | This extension allows you to change the color of your visited links |
Μέγεθος Αρχείου | 175 KB |
Αριθμός Εγκαταστάσεων | 29,087 |
Τρέχουσα Έκδοση | 0.2.2 |
Τελευταία Ενημέρωση | 2020-08-22 |
Ημερομηνία Δημοσίευσης | 2020-06-08 |
Αξιολόγηση | 3.47/5 Συνολικά 139 Αξιολογήσεις |
Προγραμματιστής | therynamo |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/therynamo/color-links |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/therynamo/color-links/issues |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Color Links", "description": "This extension allows you to change the color of your visited links", "version": "0.2.2", "icons": { "16": ".\/links16.png", "48": ".\/links48.png", "128": ".\/links128.png" }, "browser_action": { "default_popup": ".\/color-links.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "include_matches": [ "**\/*.css" ], "js": [ ".\/content-scripts\/contentscript.js" ] } ], "permissions": [ "activeTab", "https:\/\/ajax.googleapis.com\/", "storage" ] } |