JS Selector

Create JavaScript and jQuery selectors with one click.

What is JS Selector?

JS Selector is a Chrome extension developed by https://secret-share.com, and its main feature is "Create JavaScript and jQuery selectors with one click.".

Extension Screenshots

screenshot

Download JS Selector Extension CRX File

Download JS Selector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        You want easy copy and paste access to DOM elements with just one click? Well, you can stop searching, we got what you need! XPath Selector inserts a context menu to Google Chrome for easy access to this functionality. Just right click your element, choose your desired output format and get the selector right into your clipboard.

It's all that easy.                    

Extension Basic Information

Name JS Selector JS Selector
ID mlcdhnofeolpdckggnbohdgpncchcmkk
Official URL https://chromewebstore.google.com/detail/js-selector/mlcdhnofeolpdckggnbohdgpncchcmkk
Description Create JavaScript and jQuery selectors with one click.
File Size 1.71 MB
Installation Count 424
Current Version 1.1.1
Last Updated 2021-11-10
Publish Date 2020-09-06
Rating 5.00/5 Total 1 Ratings
Developer https://secret-share.com
Email [email protected]
Payment Type free
Privacy Policy Page URL https://www.secret-share.com/privacy
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JS Selector",
    "description": "Create JavaScript and jQuery selectors with one click.",
    "version": "1.1.1",
    "manifest_version": 2,
    "homepage_url": "https:\/\/checkmytag.de",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "page action demo",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "permissions": [
        "storage",
        "clipboardWrite",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/inject\/listener.js"
            ],
            "run_at": "document_start"
        }
    ]
}