Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Element Locator",
"version": "1.8",
"description": "Locate and save web elements and get their xpath\/cssSelector code",
"icons": {
"16": "images\/elementsLocator16.png",
"48": "images\/elementsLocator48.png",
"128": "images\/elementsLocator128.png"
},
"permissions": [
"activeTab",
"contextMenus"
],
"browser_action": {
"default_title": "Element Locator",
"default_popup": "ElementLocator.html"
},
"background": {
"scripts": [
"node_modules\/idb-keyval\/dist\/idb-keyval-min.js",
"scripts\/general.js",
"scripts\/eventPage.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"scripts\/general.js",
"scripts\/contentScript.js"
]
}
],
"web_accessible_resources": [
"css\/general.css"
]
}