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",
"description": "This extension allows you to search for Apps Script libraries and install them directly from Apps Script IDE",
"version": "1.0.2",
"manifest_version": 3,
"name": "Apps Script Libraries",
"background": {
"service_worker": "background.bundle.js"
},
"action": {
"default_icon": "logo.png"
},
"icons": {
"128": "logo.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/script.google.com\/home",
"https:\/\/script.google.com\/home\/*",
"https:\/\/script.google.com\/*"
],
"js": [
"contentScript.bundle.js"
],
"css": [
"content.styles.css"
],
"run_at": "document_start"
}
],
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"resources": [
"content.styles.css",
"Downarrow.png"
],
"matches": []
}
]
}