Inspect and view changes in Google Sheets ALT Keys and Trace Formulas source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Google Sheets ALT Keys and Trace Formulas",
"version": "1.1.2",
"manifest_version": 3,
"oauth2": {
"client_id": "35415201650-8l8a98slpc0k5qmhl0pkrk2pche5eoq9.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile"
]
},
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsAV+74J58ov55hXALBoV5w9tV6v+YzoV1ZrAyq3IewoKtcgOejniU4LgYSaogHg27YHKerlWt12VnzS43dWjVwN6FzKjCqPryB3oKZr4KvSh2+EYEJEdY0vgpXqqFwa0/AMGHkvv5xr+bDvQxiChZepuLoOtcRQEA4RjCg5E9tCz8DmepqkPTLB7gMJK/XQcdY98eXLr+xf7QmRzYTmDSqmUgjhdd6jDzI0nxBHnqt0vdYL0wcYUQccmtkpTGvFA3TC4bTCbbJk4WHKE2X0c8n7/OFElIK3IHs/iABByA45HZXyovTmZAJlbW+vtYRHJ5AyVldRjJtXaOFW9dJn2iQIDAQAB",
"description": "Extension that Enables Excel-style ALT-key Shortcuts for Google Sheets, plus Trace Formulas, Goal Seek, and More",
"icons": {
"16": "images/icon-16.png",
"128": "images/icon-128.png"
},
"permissions": [
"identity",
"storage"
],
"action": {
"default_title": "ShortieCuts: ALT Shortcuts for Google Sheets.",
"default_popup": "index.html"
},
"background": {
"service_worker": "scripts/worker_wrapper.js"
},
"content_scripts": [
{
"matches": [
"https://docs.google.com/spreadsheets/*",
"https://docs.google.com/document/*",
"https://docs.google.com/presentation/*"
],
"js": [
"scripts/keys.js",
"scripts/sendKeys.js",
"scripts/extrapolate.js",
"scripts/unicode.js",
"scripts/date-fns.js",
"scripts/custom-dialog.js",
"scripts/goal-seek.js",
"scripts/contentscript.js"
],
"run_at": "document_start",
"all_frames": false
},
{
"matches": [
"https://www.shortiecuts.com/*"
],
"js": [
"scripts/referral.js"
],
"run_at": "document_start",
"all_frames": false
},
{
"matches": [
"https://www.shortiecuts.com/*"
],
"js": [
"scripts/analytics-bootstrap.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"index.html"
],
"matches": [
"https://docs.google.com/*",
"https://www.shortiecuts.com/*"
]
},
{
"resources": [
"scripts/analytics.js"
],
"matches": [
"https://www.shortiecuts.com/*"
]
}
]
}