Voodoo RPA browser extension enables RPA Developers to run JQuery script on Firefox using Voodoo Robotic Process Automation tool installed on local computer.
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": 2,
"name": "Voodoo RPA",
"description": "Voodoo RPA browser extension",
"version": "1.2",
"background": {
"scripts": [
"jquery.min.js",
"background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"jquery.min.js",
"content.js"
]
}
],
"browser_action": {
"default_icon": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
}
}