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": "Sniple: Text Expander",
"version": "1.1.3",
"description": "Simple text expansion for faster typing. Create abbreviations that expand into full text snippets anywhere on the web.",
"permissions": [
"storage",
"clipboardRead",
"clipboardWrite",
"activeTab"
],
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content-script.js"
],
"run_at": "document_end"
}
],
"action": {
"default_popup": "",
"default_title": "Open Sniple"
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"sniple.html",
"sniple.png",
"test-review.html"
],
"matches": [
"<all_urls>"
]
}
]
}