Inspect and view changes in Remote for Slides 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",
"manifest_version": 3,
"name": "__MSG_appName__",
"version": "3.0.1",
"offline_enabled": false,
"description": "__MSG_appDesc__",
"default_locale": "en",
"short_name": "Remote for Slides",
"content_scripts": [
{
"matches": [
"https://docs.google.com/presentation/d/*",
"https://slides.limhenry.xyz/*"
],
"js": [
"firebase-app.min.js",
"firebase-database.min.js",
"content.min.js"
],
"run_at": "document_idle",
"all_frames": false
}
],
"externally_connectable": {
"matches": [
"*://*.limhenry.xyz/*"
]
},
"background": {
"service_worker": "background.min.js"
},
"permissions": [
"storage"
],
"icons": {
"16": "images/logo_16.png",
"48": "images/logo_48.png",
"128": "images/logo_128.png"
},
"web_accessible_resources": [
{
"resources": [
"images/logo_128.png",
"content.min.js",
"getViewerDataScript.js"
],
"matches": [
"*://*/*"
]
}
],
"options_page": "welcome.html"
}