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": "Markdown Clipper",
"version": "0.0.2",
"description": "Copy web content as markdown",
"author": "[email protected]",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_title": "Markdown Clipper",
"default_icon": "icons\/icon48.png"
},
"background": {
"service_worker": "js\/background.js",
"type": "module"
},
"permissions": [
"downloads",
"contextMenus",
"scripting",
"activeTab",
"offscreen",
"clipboardWrite",
"storage"
],
"web_accessible_resources": [
{
"resources": [
"img\/*",
"imgs\/*",
"content\/*",
"*.js",
"*.css",
"*.png",
"*.webp",
"*.ttf",
"*.json",
"*.html",
"*.wasm"
],
"matches": [
"<all_urls>"
]
}
],
"externally_connectable": {
"matches": [
"<all_urls>"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content\/index.js"
],
"run_at": "document_start"
}
]
}