Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "WhatDoesThisDo: Instant Summaries & Mindmaps",
"short_name": "WDTD",
"version": "2.2.0",
"description": "Summarize websites, YouTube & PDFs instantly. Turn content into clear insights, visual diagrams & flowcharts.",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"action": [],
"permissions": [
"sidePanel",
"contextMenus",
"storage",
"scripting",
"activeTab"
],
"host_permissions": [
"<all_urls>",
"file:\/\/\/*"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>",
"file:\/\/\/*"
],
"js": [
"libs\/Readability.js",
"libs\/pdf.min.js",
"content.js"
],
"run_at": "document_idle",
"all_frames": false
}
],
"web_accessible_resources": [
{
"resources": [
"libs\/pdf.worker.min.js",
"icon.png",
"libs\/mermaid.min.js",
"libs\/svg-pan-zoom.js"
],
"matches": [
"<all_urls>",
"file:\/\/\/*"
]
}
],
"commands": {
"smart_explain": {
"suggested_key": {
"default": "Alt+E",
"mac": "Command+E"
},
"description": "Explain selection or page"
}
}
}