Quick launch of social media apps
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": "SocialMedia Launcher",
"description": "Quick launch of social media apps",
"version": "1.0.0",
"icons": {
"128": "icon_128.png"
},
"browser_action": {
"defaul_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"activeTab"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"index.css"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}