Inspect and view changes in OpenDOI 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
{
"manifest_version": 3,
"name": "OpenDOI",
"Description": "Opendoi is a plugin designed to enhance the experience of browsing literature on PubMed. It provides users with an intuitive understanding of the network relationships between the references cited in an article and the subsequent publications that cite it. Termed as \"context\" by its creator, Opendoi aims to enrich academic research by offering a comprehensive view of an article's impact and connections within the scientific community. This tool streamlines the process of exploring literature interconnections, facilitating a deeper insight into the scholarly discourse surrounding specific topics.",
"version": "1.0.0",
"icons": {
"16": "icon/16.png",
"32": "icon/32.png",
"48": "icon/48.png",
"96": "icon/96.png",
"128": "icon/128.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Default Popup Title",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*://*.pubmed.ncbi.nlm.nih.gov/*"
],
"js": [
"content-scripts/content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"content-scripts/content.css"
],
"matches": [
"*://*.pubmed.ncbi.nlm.nih.gov/*"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}