With Testtube.io, setting up automated tests is as simple as point, click, and configure—no coding skills required. Designed with…
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",
"manifest_version": 3,
"name": "TestTube - No-Code QA Automation",
"version": "3.0.4",
"permissions": [
"activeTab",
"scripting",
"storage"
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "TestTube.png",
"48": "TestTube.png",
"128": "TestTube.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"host_permissions": [
"http://*/*",
"https://*/*"
]
}