Word Highlighter
This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web
Τι είναι το Word Highlighter;
Το Word Highlighter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Rafael Almeida, και η κύρια λειτουργία του είναι "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Word Highlighter
Λήψη αρχείων επέκτασης Word Highlighter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
The source code for this extension is available at https://github.com/rafaelcpalmeida/Word-Highlighter
Βασικές Πληροφορίες Επέκτασης
Όνομα | Word Highlighter |
ID | ncjaameocjfjjnjcijikhkhifncjijhn |
Επίσημο URL | https://chromewebstore.google.com/detail/word-highlighter/ncjaameocjfjjnjcijikhkhifncjijhn |
Περιγραφή | This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web |
Μέγεθος Αρχείου | 229 KB |
Αριθμός Εγκαταστάσεων | 826 |
Τρέχουσα Έκδοση | 1.0.2 |
Τελευταία Ενημέρωση | 2016-11-27 |
Ημερομηνία Δημοσίευσης | 2016-11-27 |
Αξιολόγηση | 2.75/5 Συνολικά 8 Αξιολογήσεις |
Προγραμματιστής | Rafael Almeida |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Word Highlighter", "description": "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web", "version": "1.0.2", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": "images\/icon.png", "default_popup": "html\/popup.html" }, "permissions": [ "storage", "contextMenus" ], "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery.js", "js\/content.js" ] } ] } |