Inspect and view changes in BitBucket NBviewer Button 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",
"manifest_version": 2,
"name": "BitBucket NBviewer Button",
"short_name": "BB NBViewer",
"description": "Add a button in BitBucket to view an IPython/Jupyter notebook in nbviewer",
"version": "1.1.1",
"icons": {
"48": "icons/icon48.png",
"128": "icons/smaller.png"
},
"content_scripts": [
{
"matches": [
"*://bitbucket.org/*"
],
"js": [
"add_nbviewer_button.js"
],
"run_at": "document_end"
}
]
}