Inspect and view changes in uSync Sync 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "uSync Sync",
"description": "uSync allows its users to build collections of content they are sharing",
"version": "1.0.0",
"manifest_version": 2,
"icons": {
"16": "icons/icon_16.png",
"48": "icons/icon_48.png",
"128": "icons/icon_128.png"
},
"browser_action": {
"default_title": "usync-extension"
},
"permissions": [
"activeTab",
"contextMenus",
"notifications"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"css": [
"content/content.css"
],
"js": [
"content/content.js"
],
"run_at": "document_start"
}
]
}