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": "Clever: Form Autofill & Text Expander",
"version": "1.0.2",
"description": "Record and replay form submissions, and use text expansion shortcuts to fill forms faster.",
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"storage",
"activeTab",
"sidePanel",
"scripting",
"tabs"
],
"host_permissions": [
"<all_urls>"
],
"oauth2": {
"client_id": "YOUR_CLIENT_ID.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/spreadsheets"
]
},
"background": {
"service_worker": "assets\/background.js",
"type": "module"
},
"action": {
"default_title": "Open Side Panel"
},
"side_panel": {
"default_path": "sidebar.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"assets\/content.js",
"assets\/replayer.js",
"assets\/textExpander.js",
"assets\/fieldSelector.js",
"assets\/autoExtractor.js"
],
"all_frames": true,
"match_about_blank": true,
"match_origin_as_fallback": true
}
]
}