Inspect and view changes in Social Media Content Saver 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": 2,
"name": "Social Media Content Saver",
"version": "1.0",
"description": "Save and organize content from social media platforms",
"permissions": [
"<all_urls>",
"activeTab",
"storage",
"downloads",
"contextMenus",
"notifications"
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": "icons/icon48.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*://*.facebook.com/*",
"*://*.instagram.com/*",
"*://*.twitter.com/*",
"*://*.linkedin.com/*",
"*://*.pinterest.com/*",
"*://*.tiktok.com/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"48": "icons/icon48.png",
"96": "icons/icon96.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{ce6eb0e3-a54f-43d7-83e2-790878eedc7e}"
}
}
}