Inspect and view changes in Social 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
{
"manifest_version": 3,
"name": "Social",
"description": "The All-in-One Link Platform for Brands and Creators",
"version": "1.0.4",
"homepage_url": "https://social.chadwick.marketing",
"icons": {
"128": "icon_128.png"
},
"action": {
"default_icon": "icon.png",
"default_title": "Social"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"all_frames": false,
"js": [
"./content.js",
"./jquery.js"
],
"run_at": "document_end"
}
],
"permissions": [
"activeTab",
"storage"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; img-src chrome://favicon;"
},
"web_accessible_resources": [
{
"resources": [
"index.html",
"/static/*"
],
"matches": [
"<all_urls>"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}