Inspect and view changes in Imgur Emoji Extension 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 Emoji Extension",
"description": "Use Imgur albums as custom emoji sets on any website. Easily enhance your chats and posts with personalized emoji collections from Imgur",
"version": "0.1.1",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"jquery-3.4.1.js",
"common.js",
"data.js",
"content.js"
]
}
],
"permissions": [
"storage",
"activeTab",
"https://api.imgur.com/3/album/*"
],
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html",
"default_title": "MyImgurEmoji"
},
"browser_specific_settings": {
"gecko": {
"id": "{ed985f97-1b47-4d37-b6c5-6c424813e333}"
}
}
}