Inspect and view changes in Notion Clear Trash 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": "Notion Clear Trash",
"version": "1.0.0",
"description": "Browser extension that adds the much-needed clear trash button to Notion.",
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"*://www.notion.so/*"
],
"js": [
"js/notion_api.js",
"js/content.js"
],
"css": [
"css/content.css"
]
}
],
"icons": {
"16": "images/icon_16.png",
"32": "images/icon_32.png",
"48": "images/icon_48.png",
"128": "images/icon_128.png"
}
}