Inspect and view changes in Better Social: Get Facebook Alerts & Fonts 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
{
"description": "__MSG_extension_brief_description__",
"version": "10.0",
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"background": {
"page": "background.html"
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": "icon-32.png"
},
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"manifest_version": 2,
"name": "__MSG_extension_full_name__",
"permissions": [
"unlimitedStorage",
"storage",
"notifications",
"tabs",
"https://*.facebook.com/*"
],
"default_locale": "en",
"web_accessible_resources": [
"*.js",
"*.css"
],
"content_scripts": [
{
"matches": [
"http://*.facebook.com/*",
"https://*.facebook.com/*"
],
"js": [
"facefont_cs.bundle.js"
],
"run_at": "document_start"
}
]
}