Highlight This: finds and marks words
Automatically finds and highlights words and phrases on the web page according to your list
Τι είναι το Highlight This: finds and marks words;
Το Highlight This: finds and marks words είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://alaaqweider.online, και η κύρια λειτουργία του είναι "Automatically finds and highlights words and phrases on the web page according to your list".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Highlight This: finds and marks words
Λήψη αρχείων επέκτασης Highlight This: finds and marks words σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Automatically finds and highlights words and phrases on the web page according to your list - No registration required - Organize your search words in groups and lists - All data stored locally - Auto-refreshes highlights on page reload and content changes - Unlimited words and lists - Free Easy to use Chrome Extension that automatically searches for defined words in the current browser tab and marks them in a text. Many more advanced features available through settings: - Create color-coded keyword lists - Disable highlighting on certain sites - Export or import your settings and keyword lists - Use lists from Pastebin Changelog 1.1 *updated latest jquery 3.4.1 1.0 *Intial Release
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | aflnhjcbpnknodmnmjjlphgcichcfbak |
Επίσημο URL | https://chrome.google.com/webstore/detail/highlight-this-finds-and/aflnhjcbpnknodmnmjjlphgcichcfbak |
Περιγραφή | Automatically finds and highlights words and phrases on the web page according to your list |
Μέγεθος Αρχείου | 1.01 MB |
Αριθμός Εγκαταστάσεων | 4,000 |
Τρέχουσα Έκδοση | 1.1 |
Τελευταία Ενημέρωση | 2019-07-09 |
Ημερομηνία Δημοσίευσης | 2019-07-04 |
Αξιολόγηση | 3.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | https://alaaqweider.online |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en,fr,nl,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_application_title__", "short_name": "Chromium-Highlighter", "description": "__MSG_application_description__", "default_locale": "en", "permissions": [ "tabs", "contextMenus", "notifications", "activeTab", "alarms", "downloads", "storage" ], "icons": { "16": "Plugin16.png", "96": "Plugin96.png" }, "background": { "scripts": [ "libs\/sanitize-html\/sanitize-html.js", "extWordHighlighter.js" ] }, "commands": { "ScrollHighlight": { "suggested_key": { "default": "Ctrl+Shift+Space", "mac": "Command+Shift+Space" }, "description": "ScrollHighlight" } }, "version": "1.1", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "libs\/jquery\/jquery-3.4.1.js", "hilitor.js", "tabWordHighlighter.js" ], "css": [ "highlightThis.css" ], "all_frames": true, "run_at": "document_start", "match_about_blank": true } ], "browser_action": { "default_icon": "Plugin16.png", "default_popup": "popup.html" } } |