File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed
Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 1+ /* global chrome */
12chrome . storage . sync . get ( {
2- board : 'hello'
3- } , function ( items ) {
4- console . log ( '/#/' + items . board , items . board ) ;
5- location . hash = '/' + items . board ;
3+ board : null
4+ // eslint-disable-next-line prefer-arrow-callback
5+ } , function setHash ( items ) {
6+ if ( items . board ) {
7+ location . hash = `/${ items . board } ` ;
8+ }
69} ) ;
Original file line number Diff line number Diff line change 22< html >
33 < head >
44 < title > React Transform Boilerplate</ title >
5- < link rel ="stylesheet " type ="text/css " href ="https://rikukissa.github.io/thoughts-app /style.css ">
5+ < link rel ="stylesheet " type ="text/css " href ="https://ideahigh.com /style.css ">
66 < script src ="board-setter.js "> </ script >
77 < script src ="https://use.typekit.net/dbp3wfc.js "> </ script >
88 < script src ="font-loader.js "> </ script >
99 </ head >
1010 < body >
1111 < div id ="root "> </ div >
12- < script src ="https://rikukissa.github.io/thoughts-app /bundle.js "> </ script >
12+ < script src ="https://ideahigh.com /bundle.js "> </ script >
1313 </ body >
1414</ html >
Original file line number Diff line number Diff line change 99 " webRequestBlocking" ,
1010 " storage"
1111 ],
12- "content_security_policy" : " script-src 'self' 'unsafe-eval' https://use.typekit.net https://d37gvrvc0wt4s1.cloudfront.net/ https://rikukissa.github.io /; object-src 'self'" ,
12+ "content_security_policy" : " script-src 'self' 'unsafe-eval' https://use.typekit.net https://d37gvrvc0wt4s1.cloudfront.net/ https://ideahigh.com /; object-src 'self'" ,
1313 "chrome_url_overrides" : {
1414 "newtab" : " index.html"
1515 },
You can’t perform that action at this time.
0 commit comments