Inspect and view changes in Copy Css Selector source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Copy Css Selector",
"short_name": "CopyCssSelector",
"version": "0.5.0.4",
"description": "Extends the Developer Tools and context menu, adding a sidebar that displays the css path of DOM element.",
"devtools_page": "devtools.html",
"background": {
"page": "background.html"
},
"manifest_version": 2,
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"author": "Alexander Chermyanin (flamencist)",
"offline_enabled": true,
"permissions": [
"contextMenus",
"activeTab",
"clipboardWrite"
],
"content_scripts": [
{
"all_frames": true,
"matches": [
"*://*/*"
],
"js": [
"js/selector-generator.js",
"js/content.js"
],
"css": [
"css/style.css"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}