Inspect and view changes in Get Joke 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Get Joke Extension",
"short_name": "Get Joke",
"version": "1.11.0",
"author": "MarkAlexI",
"manifest_version": 3,
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"192": "images/icon-192.png"
},
"description": "Get Joke Extension is a simple web extension to get random jokes. Press the button for funny jokes to cheer you up!",
"permissions": [
"storage"
],
"action": {
"default_popup": "index.html",
"default_title": "Just joke"
},
"options_ui": {
"page": "options/options.html",
"open_in_tab": false
},
"commands": {
"refresh-joke-feature": {
"suggested_key": {
"default": "Ctrl+Shift+X",
"linux": "Ctrl+Shift+J"
},
"description": "Send a 'refresh-joke-feature' event"
}
},
"content_security_policy": {
"extension_pages": "default-src 'self'; style-src 'self'; connect-src 'self' https://v2.jokeapi.dev"
}
}