Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "Instantly turn any YouTube video into a LinkedIn post or tweet in one click.",
"version": "1.0.0",
"manifest_version": 3,
"name": "YouTube to LinkedIn & Twitter Post Generator",
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/www.youtube.com\/*",
"https:\/\/youtu.be\/*",
"https:\/\/notegpt.io\/*",
"https:\/\/tools.originality.ai\/*",
"http:\/\/localhost\/*"
],
"background": {
"service_worker": "background.bundle.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": "icon-34.png",
"default_title": "Social Post Generator"
},
"icons": {
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/youtu.be\/*",
"http:\/\/localhost\/*"
],
"js": [
"contentScript.bundle.js"
],
"css": [
"contentScript.css"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"icon-128.png",
"icon-34.png",
"popup.html",
"contentScript.css"
],
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/youtu.be\/*",
"http:\/\/localhost\/*"
]
}
]
}