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": 3,
"name": "UTAM",
"version": "1.0.3",
"description": "Allows test script authors to analyze a page and select the correct UTAM Page Object to use for their test.",
"author": "Salesforce",
"devtools_page": "devtools\/devtools.html",
"background": {
"service_worker": "background\/background.js",
"type": "module"
},
"icons": {
"512": "img\/browser-plugin.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content\/content.js"
]
}
],
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"common\/DataTypes.js",
"common\/ErrorCodes.js",
"common\/Messages.js",
"common\/Settings.js",
"content\/content_main.js",
"content\/ElementFinder.js",
"content\/Highlighter.js",
"content\/MemberNodeDescriptor.js",
"content\/PageObjectDatabase.js"
]
}
],
"permissions": [
"clipboardWrite",
"storage",
"tabs"
]
}