Inspect and view changes in Base Table Hider 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": "Base Table Hider",
"version": "1.0.0",
"description": "Toogle visibilty of Airtable tables inside a base.",
"manifest_version": 3,
"author": "Byteglad",
"action": {
"default_popup": "popup.html",
"default_title": "Hide Airtables"
},
"permissions": [
"activeTab",
"scripting",
"tabs"
],
"content_scripts": [
{
"matches": [
"https://airtable.com/*",
"https://unpkg.com/ionicons@5.5.2/*",
"https://fonts.googleapis.com/*"
],
"runAt": "document_end",
"css": [
"css/main.css"
],
"js": [
"content.js"
]
}
],
"host_permissions": [
"https://airtable.com/*"
],
"background": {
"service_worker": "background.js",
"type": "module"
}
}