Find Selector

Javascript selector to quickly find elements on the page.

Τι είναι το Find Selector;

Το Find Selector είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον AdsPower, και η κύρια λειτουργία του είναι "Javascript selector to quickly find elements on the page.".

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Easily and quickly find the JavaScript object of the only CSS selector of the page DOM element! No need to understand the code structure of the page, easy and efficient!
It is a good tool for AdsPower RPA robot creation process!

1. Turn on the search mode, and the page will display the corresponding semantics of the element
2. Shortcut key (Ctrl+Shift+S) to copy the selector of the current floating element
3. Paste the selector

Windows shortcut keys use:

Start/stop search mode: Ctrl + Shift + E
Quick exit: Ctrl + Shift + Z
Copy selector: Ctrl + Shift + S
Hide the prompt box: Alt + C

Mac shortcut keys use:

Start/stop search mode: Command + Shift + E
Quick exit: Command + Shift + Z
Copy selector: Command + E
Hide the prompt box: Ctrl + C

It is very useful for quickly obtaining any element selector for testing frameworks (such as Selenium/Puppeteer).                    

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

Όνομα Find Selector Find Selector
ID bkbofjphmlieeijckncaopohipgminhc
Επίσημο URL https://chromewebstore.google.com/detail/find-selector/bkbofjphmlieeijckncaopohipgminhc
Περιγραφή Javascript selector to quickly find elements on the page.
Μέγεθος Αρχείου 62.08 KB
Αριθμός Εγκαταστάσεων 3,327
Τρέχουσα Έκδοση 0.0.2
Τελευταία Ενημέρωση 2021-06-16
Ημερομηνία Δημοσίευσης 2021-05-13
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής AdsPower
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.adspower.net?code=cdyhqt&source=chrome_ext
URL της Σελίδας Πολιτικής Απορρήτου https://www.adspower.net
Υποστηριζόμενες Γλώσσες en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.2",
    "manifest_version": 2,
    "default_locale": "en",
    "short_name": "find-selector",
    "name": "__MSG_ext_name__",
    "description": "__MSG_ext_description__",
    "permissions": [
        "contextMenus",
        "clipboardWrite"
    ],
    "homepage_url": "https:\/\/www.adspower.net",
    "offline_enabled": true,
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_title": "__MSG_ext_name__"
    },
    "background": {
        "scripts": [
            "libs\/background.js"
        ]
    },
    "content_scripts": [
        {
            "css": [
                "popup\/style.css"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "libs\/content.js"
            ]
        }
    ],
    "icons": {
        "128": "img\/icon_128.png",
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.png"
    },
    "commands": {
        "get_selector": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "Command+E"
            },
            "description": "-"
        },
        "find_selector": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "-"
        },
        "find_selector_esc": {
            "suggested_key": {
                "default": "Ctrl+Shift+Z",
                "mac": "Command+Shift+Z"
            },
            "description": "-"
        },
        "find_selector_hide": {
            "suggested_key": {
                "default": "Alt+C",
                "mac": "MacCtrl+C"
            },
            "description": "-"
        }
    }
}