Inspect and view changes in Jira Issue Creator in Chrome - Screen&Draw 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": "Jira Issue Creator in Chrome - Screen&Draw",
"short_name": "JTM",
"description": "💡 Seamless Bug Reporting and Issue Creation: Send Visual Feedback Straight to Jira from Your Webpage",
"version": "3.0.1",
"manifest_version": 3,
"default_locale": "en",
"action": {
"default_title": "Jira Issue Creator in Chrome - Screen&Draw",
"default_popup": "index.html"
},
"background": {
"service_worker": "background.bundle.js"
},
"permissions": [
"storage",
"tabs",
"cookies",
"contextMenus",
"scripting",
"unlimitedStorage",
"clipboardWrite"
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*",
"<all_urls>"
],
"js": [
"contentScript.bundle.js"
],
"css": [
"styles.css"
],
"run_at": "document_idle"
},
{
"matches": [
"http://*/*",
"https://*/*",
"<all_urls>"
],
"js": [
"reactContent.bundle.js"
],
"run_at": "document_idle"
},
{
"matches": [
"http://*/*",
"https://*/*",
"<all_urls>"
],
"js": [
"framesContent.bundle.js"
],
"css": [
"styles.css"
],
"run_at": "document_idle",
"all_frames": true
},
{
"js": [
"editor/index.js"
],
"matches": [
"<all_urls>"
],
"exclude_matches": [
"*://*/*.xml"
],
"run_at": "document_idle"
},
{
"all_frames": true,
"js": [
"inject-css/index.js"
],
"matches": [
"<all_urls>"
],
"exclude_matches": [
"*://*/*.xml"
],
"run_at": "document_start"
}
],
"icons": {
"16": "logoWhite.png",
"48": "logo1.png",
"128": "logo1.png"
},
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"index.html",
"dragIcon.svg",
"dragIconHover.svg",
"dragIconClick.svg",
"monaco-editor/*",
"editor/index.css",
"readability/index.css",
"style.css",
"Cross-pen.png",
"recordingControllersIcons/drag-icon.svg",
"recordingControllersIcons/cross-icon.svg",
"recordingControllersIcons/media-record.svg",
"recordingControllersIcons/pause-icon.svg",
"Video-start.svg",
"cross_icon.svg",
"stop-recording.svg",
"Cross-arrow.png",
"menu-checkmark-on.png",
"Cross-ellipse.png",
"menu-checkmark-on.svg",
"Cross-fill-ellipse.png",
"Cross-line.png",
"Cross-step.png",
"Cross-text.png",
"Cross-rectangle.png",
"Cross-fill-rectangle.png",
"Cross-move.png",
"",
"",
"Cross-highlighter.svg",
"Cross-highlighter.png",
"Cross-highlighter.cur",
"Cross-eraser.png",
"Cross-text.png",
"Cross-line.png",
"Cross-move.png",
"Cross-arrow.png",
"Cross-fill-rectangle.png",
"Cross-rectangle.png",
"Cross-fill-ellipse.png",
"Cross-ellipse.png",
"Cross-step.png",
"circleEraser.png",
"Cross-move.svg",
"Cross-screenshot.svg",
"Cross-step.svg",
"Cross-pen.svg",
"blurImage.png",
"Cross-eraser.svg",
"Cross-arrow.svg",
"Cross-copyElement.svg",
"Cross-ellipse.svg",
"Cross-fill-ellipse.svg",
"Cross-fill-rectangle.svg",
"Cross-line.svg",
"Cross-rectangle.svg",
"Cross-text.svg",
"eraser.svg",
"clipboard.svg",
"highlighterCursor.svg",
"blur.svg",
"testIcon.svg",
"annotationtemporary.svg",
"circle.svg",
"circlefill.svg",
"rect.svg",
"rectfill.svg",
"arrow.svg",
"pointer.svg",
"stylebot.svg",
"download.svg",
"step.svg",
"pointer.svg",
"insertelement.svg",
"highlighter.svg",
"copyelement.svg",
"clear.svg",
"undo.svg",
"redo.svg",
"move.svg",
"text.svg",
"line.svg",
"exit.svg",
"shevronleft.svg",
"shevronright.svg",
"checkMark.svg",
"changeColor.svg"
],
"matches": [
"<all_urls>"
]
}
]
}