Highlighter Tool

Keeps a list of words and phrases to Highlight when active

Τι είναι το Highlighter Tool;

Το Highlighter Tool είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον n33san, και η κύρια λειτουργία του είναι "Keeps a list of words and phrases to Highlight when active".

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

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

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

                        *Update: The extension now requires you to click the icon to highlight the terms in the current tab. This gives you the power to find what you need when you need it.

This extension saves a list of words or phrases to highlight on any webpage. Developed for reddit user /u/Gravitom

It's clunky and not very pretty, but it was developed in a bit of a rush to practice JS and get 1 user his desired Google Chrome extension.                    

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

Όνομα Highlighter Tool Highlighter Tool
ID agkdcdgphcoadkhbphpbnaohejifmbgg
Επίσημο URL https://chrome.google.com/webstore/detail/highlighter-tool/agkdcdgphcoadkhbphpbnaohejifmbgg
Περιγραφή Keeps a list of words and phrases to Highlight when active
Μέγεθος Αρχείου 39.48 KB
Αριθμός Εγκαταστάσεων 223
Τρέχουσα Έκδοση 0.2.1
Τελευταία Ενημέρωση 2017-05-16
Ημερομηνία Δημοσίευσης 2017-05-16
Αξιολόγηση 3.33/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής n33san
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Highlighter Tool",
    "version": "0.2.1",
    "description": "Keeps a list of words and phrases to Highlight when active",
    "permissions": [
        "tabs",
        "",
        "storage"
    ],
    "browser_action": {
        "default_icon": "pencil32.png",
        "default_title": "Click to highlight"
    },
    "options_ui": {
        "page": "popup.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.2.1.min.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "brAction.js",
            "myscript.js"
        ]
    },
    "icons": {
        "32": "pencil32.png",
        "128": "pencil128.png"
    },
    "manifest_version": 2
}