File tree Expand file tree Collapse file tree 2 files changed +14
-7
lines changed
Expand file tree Collapse file tree 2 files changed +14
-7
lines changed Original file line number Diff line number Diff line change 11{
2- "manifest_version" : 2 ,
2+ "manifest_version" : 3 ,
33 "name" : " GitHub Jira Integration" ,
44 "version" : " 1.3.0" ,
55
1010
1111 "options_ui" : {
1212 "page" : " src/options.html" ,
13- "chrome_style" : true
13+ "chrome_style" : true
1414 },
1515
1616 "icons" : {
2222 },
2323
2424 "web_accessible_resources" : [
25- " images/jira.png"
25+ {
26+ "resources" : [
27+ " images/jira.png"
28+ ]
29+ }
2630 ],
2731
2832 "content_scripts" : [
3539
3640 "permissions" : [
3741 " activeTab" ,
38- " storage" ,
42+ " storage"
43+ ],
44+
45+ "host_permissions" : [
3946 " https://*.atlassian.net/" ,
4047 " https://*.jira.com/" ,
4148 " http://*.atlassian.net/" ,
4754 ],
4855
4956 "background" : {
50- "scripts " : [ " src/background.js" ] ,
51- "persistent " : false
57+ "service_worker " : " src/background.js" ,
58+ "type " : " module "
5259 }
5360}
Original file line number Diff line number Diff line change 11// The last time a refresh of the page was done
22let lastRefresh = ( new Date ( ) ) . getTime ( ) ;
3- let jiraLogo = chrome . extension . getURL ( "images/jira.png" ) ;
3+ let jiraLogo = chrome . runtime . getURL ( "images/jira.png" ) ;
44let jiraUrl = '' ;
55let acceptanceStartString = 'h3. Acceptance Criteria' ;
66let acceptanceEndString = 'h3. Notes' ;
You can’t perform that action at this time.
0 commit comments