Inspect and view changes in Imgur, but for Image Hosting 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": "Imgur, but for Image Hosting",
"version": "1.0",
"description": "Perfect if you don't use Imgur as Social Media. Redirects straight to the hosted image!",
"icons": {
"32": "icons/border-32.png",
"96": "icons/border-96.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*://*.imgur.com/gallery/*"
],
"js": [
"redirect.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{7a37bc19-116c-4c41-b9e7-41f66213e2a3}"
}
}
}