Inspect and view changes in Ride With Jira 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": "Ride With Jira",
"description": "Ride With Jira Chrome Extension",
"version": "2.5.5",
"manifest_version": 3,
"icons": {
"16": "img/logo-16.png",
"32": "img/logo-34.png",
"48": "img/logo-48.png",
"128": "img/logo-128.png"
},
"action": {
"default_popup": "src/popup/popup.html",
"default_icon": "img/logo-48.png"
},
"options_page": "options.html",
"background": {
"service_worker": "service-worker-loader.js",
"type": "module"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+Shift+J",
"mac": "Alt+J"
}
}
},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
},
"content_scripts": [
{
"js": [
"assets/index.js-loader-c88a35eb.js"
],
"matches": [
"https://*/*"
],
"include_globs": [
"https://*jira*/*",
"https://*atlassian*/*"
],
"css": [
"assets/index-e8acd140.css"
]
}
],
"web_accessible_resources": [
{
"matches": [],
"resources": [
"img/logo-16.png",
"img/logo-34.png",
"img/logo-48.png",
"img/logo-128.png"
],
"use_dynamic_url": false
},
{
"matches": [
"https://*/*"
],
"resources": [
"assets/chunk-9581f166.js"
],
"use_dynamic_url": false
}
],
"permissions": [
"storage"
]
}