Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Snippet Buddy: Text Expander for Chrome",
"version": "1.0.25",
"description": "Insert custom templates on any website.",
"action": {
"default_title": "Snippet Buddy"
},
"icons": {
"128": "128.png"
},
"permissions": [
"storage",
"tabs",
"cookies",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"script.js"
],
"all_frames": true,
"match_about_blank": true
}
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"blob.wav"
]
}
],
"incognito": "split"
}