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",
"description": "Export any web content to Markdown format",
"version": "1.6.0",
"manifest_version": 3,
"name": "Web2Markdown - Markdown Web Clipper",
"options_page": "options.html",
"permissions": [
"activeTab",
"storage",
"http:\/\/*\/*",
"https:\/\/*\/*",
{
"identity": [
"email"
]
}
],
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"background": {
"service_worker": "background.bundle.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": "icon-48.png"
},
"icons": {
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"<all_urls>"
],
"js": [
"contentScript.bundle.js"
],
"css": [
"content.styles.css"
]
},
{
"matches": [
"*:\/\/*.notion.site\/*"
],
"run_at": "document_start",
"js": [
"inject.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"content.styles.css",
"icon-128.png",
"icon-48.png",
"icon-16.png"
],
"matches": []
},
{
"resources": [
"injected.js"
],
"matches": [
"*:\/\/*.notion.site\/*"
]
}
]
}