Inspect and view changes in U途RPA 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
{
"manifest_version": 2,
"name": "U途RPA",
"version": "1.1.0",
"description": "U途RPA,用于浏览器自动化与本机应用程序通讯的插件",
"icons": {
"16": "rpa_logo@16.png",
"32": "rpa_logo@32.png",
"48": "rpa_logo@48.png",
"128": "rpa_logo@128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{8635A654-EF2C-5069-AD61-F22A01F483F9}"
}
},
"background": {
"scripts": [
"loader.js"
]
},
"content_scripts": [
{
"all_frames": true,
"js": [
"contentLoader.js"
],
"matches": [
"http://*/*",
"https://*/*",
"file://*/*"
],
"match_about_blank": true,
"run_at": "document_start"
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": [
"nativeMessaging",
"webNavigation",
"tabs",
"cookies",
"<all_urls>"
]
}