Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"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"
}