Inspect and view changes in Session Share 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": "Mit diesem Plugin können Webseiten-Sessions geteilt werden",
"manifest_version": 2,
"name": "Session Share",
"version": "1.1",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentscript.js"
]
}
],
"background": {
"scripts": [
"underscore.js",
"background.js"
]
},
"permissions": [
"cookies",
"*://*/*",
"contextMenus",
"clipboardWrite"
],
"omnibox": {
"keyword": "sessionshare"
}
}