DCHighlighter

Double click a word to highlight all occurances. Double clicking another word will highlight the new words.

Τι είναι το DCHighlighter;

Το DCHighlighter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Reece, και η κύρια λειτουργία του είναι "Double click a word to highlight all occurances. Double clicking another word will highlight the new words.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης DCHighlighter

Λήψη αρχείων επέκτασης DCHighlighter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Just double click to highlight the places that word occurs. 

There are places that it won't work or may break the page. Things like Twitter that load content are unlikely to work at all. Some sites just have badly written javascript that breaks and prevents me from running my code.

TODO:
build a way to disable the extension on sites that you select (maybe because you don't want or because you found it won't work);

Update:
bugfix v1.0.1 - won't search when highlighting words in a textbox. 
updates v1.0.2 - add link to search google since the word is no longer highlighted.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα DCHighlighter DCHighlighter
ID cbdhkniehcgbegiemeehcieonlibjifm
Επίσημο URL https://chromewebstore.google.com/detail/dchighlighter/cbdhkniehcgbegiemeehcieonlibjifm
Περιγραφή Double click a word to highlight all occurances. Double clicking another word will highlight the new words.
Μέγεθος Αρχείου 50.39 KB
Αριθμός Εγκαταστάσεων 163
Τρέχουσα Έκδοση 1.0.2
Τελευταία Ενημέρωση 2014-09-27
Ημερομηνία Δημοσίευσης 2014-09-26
Αξιολόγηση 3.50/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής Reece
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DCHighlighter",
    "version": "1.0.2",
    "manifest_version": 2,
    "description": "Double click a word to highlight all occurances. Double clicking another word will highlight the new words.",
    "icons": {
        "48": "h48.png",
        "128": "h128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "highlighter.css"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ]
        }
    ],
    "options_page": "highlightoptions.html",
    "permissions": [
        "",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "19": "h48.png"
        },
        "default_title": "DCHighlighter",
        "default_popup": "highlightoptions.html"
    },
    "web_accessible_resources": [
        "h48.png",
        "h128.png",
        "content.js"
    ]
}