xPath plugin to auto generate, write and verify xpath & cssSelector.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "SelectorsHub Pro",
"description": "__MSG_extDescription__",
"author": "Sanjay Kumar",
"homepage_url": "https://www.selectorshub.com/",
"default_locale": "en",
"version": "5.1.9",
"devtools_page": "devtools-panel/devtools.html",
"icons": {
"48": "logo-48.png",
"96": "logo-96.png",
"128": "logo-128.png"
},
"action": {
"default_title": "__MSG_extDefaultTitle__",
"default_popup": "extension/popup.html"
},
"background": {
"service_worker": "extension/background.js"
},
"side_panel": {
"default_path": "side-panel/side-shub-panel.html"
},
"permissions": [
"tabs",
"notifications",
"storage",
"contextMenus",
"clipboardWrite",
"cookies",
"sidePanel",
"webNavigation"
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "Command+Shift+S"
},
"description": "Open Side Panel"
}
},
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"<all_urls>"
],
"css": [
"content-script/contentScript.css"
],
"js": [
"content-script/injectedScript.js",
"content-script/consoleApi.js",
"content-script/dom-inspector.js",
"content-script/contentScript.js"
],
"all_frames": true,
"match_about_blank": true
}
],
"offline_enabled": true,
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}