Inspect and view changes in ResearchWize 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": 3,
"name": "ResearchWize",
"version": "1.9.4.8",
"description": "ResearchWize helps you summarize, analyze, and manage research content efficiently.",
"permissions": [
"storage",
"activeTab",
"sidePanel"
],
"host_permissions": [
"https://chrome.rob-d09.workers.dev/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"side_panel": {
"default_path": "popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"console-filter.js"
],
"run_at": "document_start"
},
{
"matches": [
"<all_urls>"
],
"js": [
"libs/Readability.js",
"libs/unfluff.bundle.js",
"content.js"
],
"run_at": "document_idle"
}
],
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"icons/icon16.png",
"icons/icon48.png",
"icons/icon128.png",
"libs/*.js",
"popup.html"
],
"matches": [
"<all_urls>"
]
}
],
"browser_specific_settings": {
"edge": {
"id": "researchwize-beta@edge.microsoft.com",
"strict_min_version": "91.0"
}
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}