Inspect and view changes in PDF Annotator and Highlighter 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": 2,
"name": "PDF Annotator and Highlighter",
"version": "1.0",
"description": "Annotate, highlight, and add notes to PDF files directly in the browser.",
"permissions": [
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
],
"css": [
"styles.css"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_popup": "popup.html",
"default_title": "PDF Annotator Tools"
},
"browser_specific_settings": {
"gecko": {
"id": "{99177f0b-1112-429f-97e2-f813518f0f54}"
}
}
}