Inspect and view changes in Notion Tweet Preview 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": "Notion Tweet Preview",
"version": "0.1.0",
"description": "Preview Twitter tweets and threads in Notion",
"permissions": [
"storage",
"tabs"
],
"action": {
"default_icon": "images/logo.png",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://www.notion.com/*",
"https://www.notion.so/*"
],
"js": [
"content.js"
],
"css": [
"style.css"
],
"run_at": "document_start"
}
],
"icons": {
"16": "images/logo.png",
"48": "images/logo.png",
"128": "images/logo.png"
},
"short_name": "NTP"
}