Get robust relative xpaths
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"all_frames": true,
"run_at": "document_end",
"js": [
"Xpath0rLib.js",
"content.js"
]
}
],
"name": "Xpath0r",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"web_accessible_resources": [
"icons/*"
],
"description": "Get robust relative xpaths",
"background": {
"persistent": false,
"scripts": [
"main.js"
]
},
"homepage_url": "http://cz.linkedin.com/in/kevinbouge/",
"version": "1.5.0",
"manifest_version": 2,
"browser_action": {
"default_icon": "icons/icon16.png",
"default_title": "Xpath0r"
},
"permissions": [
"tabs",
"http://*/*",
"https://*/*",
"contextMenus",
"webNavigation",
"notifications"
]
}