grep-click: type button text to click

More browse, less mouse. Navigate chrome by typing text of buttons on the page

Τι είναι το grep-click: type button text to click;

Το grep-click: type button text to click είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον grep-click-studios, και η κύρια λειτουργία του είναι "More browse, less mouse. Navigate chrome by typing text of buttons on the page".

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

screenshot

Λήψη αρχείου CRX της επέκτασης grep-click: type button text to click

Λήψη αρχείων επέκτασης grep-click: type button text to click σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Grep-click allows you to click buttons and links by inputting text; just type in the text of the thing you want to click. Inspired by Chrome’s native command-f functionality, which highlights results of a text search, grep-click implements this same pattern:

1. Type your search into the input field
2. Tab between results on the page, all of which will be clickable elements
3. Click on the desired element by pressing enter
4. Repeat!

Note that searching for the colon character only, “:”, will allow you to to find all input fields on the page.

With grep-click, you add speed and simplicity to your browsing behavior. Minimize the amount you need to reach for the mouse for a definite boost in productivity!

Grep click can be opened with the following keyboard shortcuts:

Mac & Windows: Alt+Shift+P
Linux: Ctrl+Shift+K                    

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

Όνομα grep-click: type button text to click grep-click: type button text to click
ID ciokdkmjfdaidmcjmdmpjedgdflbfhng
Επίσημο URL https://chromewebstore.google.com/detail/grep-click-type-button-te/ciokdkmjfdaidmcjmdmpjedgdflbfhng
Περιγραφή More browse, less mouse. Navigate chrome by typing text of buttons on the page
Μέγεθος Αρχείου 477 KB
Αριθμός Εγκαταστάσεων 110
Τρέχουσα Έκδοση 1.3.2
Τελευταία Ενημέρωση 2017-03-28
Ημερομηνία Δημοσίευσης 2017-03-27
Αξιολόγηση 3.40/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής grep-click-studios
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "grep-click: type button text to click",
    "short_name": "grep-click",
    "description": "More browse, less mouse. Navigate chrome by typing text of buttons on the page",
    "version": "1.3.2",
    "icons": {
        "16": ".\/images\/logo-16.png",
        "32": ".\/images\/logo-32.png",
        "48": ".\/images\/logo-48.png",
        "128": ".\/images\/logo-128.png"
    },
    "permissions": [
        "tabs",
        ""
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "browser_action": {
        "default_icon": [],
        "default_title": "Grep Click",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "events.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "node_modules\/jquery\/dist\/jquery.min.js",
                "trie.js",
                "content-script.js"
            ]
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "linux": "Ctrl+Shift+K",
                "windows": "Alt+Shift+P",
                "mac": "Alt+Shift+P"
            }
        }
    },
    "manifest_version": 2
}