Skip to content

Commit

Permalink
Clean: Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Hayao0819 committed Oct 14, 2023
1 parent a06a3a4 commit 7e85051
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ pnpm-lock.yaml
Dockerfile
package.json
/README.md
/SUSHI.md
20 changes: 10 additions & 10 deletions REFER.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
## References

- [入門者/初心者にもわかるwebpack 5の基礎\(Babel編\) \| アールエフェクト](https://reffect.co.jp/html/webpack-babel-loader-setting-for-beginner/)
- [最新版で学ぶwebpack 5入門 \- スタイルシート\(CSS/Sass\)を取り込む方法 \- ICS MEDIA](https://ics.media/entry/17376/)
- [Module Methods \| webpack](https://webpack.js.org/api/module-methods/)
- [Welcome to the Chrome Extension Manifest V3 \- Chrome for Developers](https://developer.chrome.com/docs/extensions/mv3/intro/)
- [Chrome拡張機能 manifest\.json Ver\.3の書き方 \- Qiita](https://qiita.com/shiro1212/items/12f0a767494a7b2ab0b3)
- [TypeScript で Chrome 拡張機能を開発する \- RevComm Tech Blog](https://tech.revcomm.co.jp/build-chrome-extension-with-typescript)
- [TypeScriptで作るイマドキChrome拡張機能開発入門 \- Qiita](https://qiita.com/markey/items/ea9ed18a1a243b39e06e)
- [chibat/chrome\-extension\-typescript\-starter: Chrome Extension TypeScript Starter](https://github.com/chibat/chrome-extension-typescript-starter)
- [TypeScriptで document\.getElementById\("hoge"\)\.value をすると出るThe property ‘hoge' does not exist on value of type 'HTMLElement' というエラーを解消する \- Qiita](https://qiita.com/Sekky0905/items/a88721f2af41050c93f2#typescript%E3%81%A7-documentgetelementbyidhogevalue-%E3%82%92%E3%81%99%E3%82%8B%E3%81%A8%E5%87%BA%E3%82%8Bthe-property-hoge-does-not-exist-on-value-of-type-htmlelement-%E3%81%A8%E3%81%84%E3%81%86%E3%82%A8%E3%83%A9%E3%83%BC%E3%82%92%E8%A7%A3%E6%B6%88%E3%81%99%E3%82%8B)
- [Step by Stepで始めるESLint \- Qiita](https://qiita.com/howdy39/items/6e2c75861bc5a14b2acf)
- [入門者/初心者にもわかるwebpack 5の基礎\(Babel編\) \| アールエフェクト](https://reffect.co.jp/html/webpack-babel-loader-setting-for-beginner/)
- [最新版で学ぶwebpack 5入門 \- スタイルシート\(CSS/Sass\)を取り込む方法 \- ICS MEDIA](https://ics.media/entry/17376/)
- [Module Methods \| webpack](https://webpack.js.org/api/module-methods/)
- [Welcome to the Chrome Extension Manifest V3 \- Chrome for Developers](https://developer.chrome.com/docs/extensions/mv3/intro/)
- [Chrome拡張機能 manifest\.json Ver\.3の書き方 \- Qiita](https://qiita.com/shiro1212/items/12f0a767494a7b2ab0b3)
- [TypeScript で Chrome 拡張機能を開発する \- RevComm Tech Blog](https://tech.revcomm.co.jp/build-chrome-extension-with-typescript)
- [TypeScriptで作るイマドキChrome拡張機能開発入門 \- Qiita](https://qiita.com/markey/items/ea9ed18a1a243b39e06e)
- [chibat/chrome\-extension\-typescript\-starter: Chrome Extension TypeScript Starter](https://github.com/chibat/chrome-extension-typescript-starter)
- [TypeScriptで document\.getElementById\("hoge"\)\.value をすると出るThe property ‘hoge' does not exist on value of type 'HTMLElement' というエラーを解消する \- Qiita](https://qiita.com/Sekky0905/items/a88721f2af41050c93f2#typescript%E3%81%A7-documentgetelementbyidhogevalue-%E3%82%92%E3%81%99%E3%82%8B%E3%81%A8%E5%87%BA%E3%82%8Bthe-property-hoge-does-not-exist-on-value-of-type-htmlelement-%E3%81%A8%E3%81%84%E3%81%86%E3%82%A8%E3%83%A9%E3%83%BC%E3%82%92%E8%A7%A3%E6%B6%88%E3%81%99%E3%82%8B)
- [Step by Stepで始めるESLint \- Qiita](https://qiita.com/howdy39/items/6e2c75861bc5a14b2acf)
7 changes: 4 additions & 3 deletions public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,11 @@
},
{
"matches": ["*://*.kyomu-sys.gunma-u.ac.jp/*"],
"js": ["common.js","kyomu.js"]
},{
"js": ["common.js", "kyomu.js"]
},
{
"matches": ["*://www.media.gunma-u.ac.jp/*"],
"js": ["common.js","media.js"]
"js": ["common.js", "media.js"]
}
]
}

0 comments on commit 7e85051

Please sign in to comment.