Inspect and view changes in PixelVibe Recorder for Chrome 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "PixelVibe Recorder for Chrome",
"short_name": "PixelVibe Recorder",
"description": "Vibe with your creativity. Create with PixelVibe using webcam, screen capture, and audio of your choice",
"homepage_url": "https://www.eastbrightmarketing.com/appsandtools/PixelVibe",
"version": "2.1.2",
"permissions": [
"desktopCapture",
"audioCapture",
"videoCapture",
"tabCapture",
"clipboardRead",
"storage",
"activeTab",
"identity",
"scripting",
"notifications",
"tabs",
"scripting",
"https://buy.stripe.com/*"
],
"action": {
"default_popup": "./popup.html",
"default_icon": {
"16": "./src/icons/icon16.png",
"32": "./src/icons/icon16.png",
"48": "./src/icons/icon48.png",
"64": "./src/icons/icon64.png",
"72": "./src/icons/icon72.png",
"96": "./src/icons/icon96.png",
"128": "./src/icons/icon128.png",
"192": "./src/icons/icon192.png",
"256": "./src/icons/icon256.png",
"512": "./src/icons/icon512.png"
}
},
"background": {
"service_worker": "background.js"
},
"options_page": "./options.html",
"icons": {
"16": "./src/icons/icon16.png",
"32": "./src/icons/icon32.png",
"48": "./src/icons/icon48.png",
"128": "./src/icons/icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.bundle.js"
],
"run_at": "document_end"
}
],
"oauth2": {
"client_id": "259069769540-9fcmu3bd5p6fcvcj8bkejjm2obt9al3j.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile"
]
}
}