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",
"name": "Obsidian Clipper",
"version": "0.5.0",
"manifest_version": 3,
"description": "A small chrome plugin that let's you easily clip things to Obsidian",
"homepage_url": "https:\/\/github.com\/jplattel\/obsidian-clipper",
"background": {
"service_worker": "background.js",
"type": "module"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"action": {
"default_title": "Clip selection to Obsidian"
},
"permissions": [
"activeTab",
"clipboardWrite",
"storage",
"scripting"
],
"host_permissions": [
"https:\/\/jplattel.github.io\/obsidian-clipper\/clip.html"
],
"web_accessible_resources": [
{
"resources": [
"\/lib\/*"
],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"16": "icons\/favicon-16x16.png",
"48": "icons\/favicon-48x48.png",
"128": "icons\/favicon-128x128.png"
}
}