Inspect and view changes in archiveph 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
{
"name": "archiveph",
"version": "1.6.0",
"manifest_version": 2,
"description": "Show archive page",
"permissions": [
"tabs",
"https://archive.is/*",
"https://web.archive.org/*"
],
"icons": {
"48": "icons/48.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https://archive.is/*"
],
"js": [
"page.js"
]
}
],
"browser_action": {
"browser_style": true,
"default_icon": "icons/32.png",
"default_title": "Show archive page"
},
"browser_specific_settings": {
"gecko": {
"id": "{a707cbd6-3d32-4c20-952c-91e1662c532e}"
}
}
}