├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── chrome ├── _locales │ ├── en │ │ └── messages.json │ └── ko │ │ └── messages.json ├── assets │ ├── icon128.png │ ├── icon19.png │ └── icon38.png ├── background.js ├── manifest.json ├── options.html ├── options.js └── script.js └── other ├── google-meet-sample.png ├── promotion-1400x560.png ├── promotion-1400x560.xcf ├── promotion-440x280.png ├── promotion-440x280.xcf ├── promotion-920x680.png ├── promotion-920x680.xcf ├── screenshot-1.png ├── screenshot-1.xcf ├── screenshot-2.png └── screenshot-2.xcf /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # IntelliJ 2 | .idea 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/README.md -------------------------------------------------------------------------------- /chrome/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/chrome/_locales/en/messages.json -------------------------------------------------------------------------------- /chrome/_locales/ko/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/chrome/_locales/ko/messages.json -------------------------------------------------------------------------------- /chrome/assets/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/chrome/assets/icon128.png -------------------------------------------------------------------------------- /chrome/assets/icon19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/chrome/assets/icon19.png -------------------------------------------------------------------------------- /chrome/assets/icon38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/chrome/assets/icon38.png -------------------------------------------------------------------------------- /chrome/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/chrome/background.js -------------------------------------------------------------------------------- /chrome/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/chrome/manifest.json -------------------------------------------------------------------------------- /chrome/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/chrome/options.html -------------------------------------------------------------------------------- /chrome/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/chrome/options.js -------------------------------------------------------------------------------- /chrome/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/chrome/script.js -------------------------------------------------------------------------------- /other/google-meet-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/other/google-meet-sample.png -------------------------------------------------------------------------------- /other/promotion-1400x560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/other/promotion-1400x560.png -------------------------------------------------------------------------------- /other/promotion-1400x560.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/other/promotion-1400x560.xcf -------------------------------------------------------------------------------- /other/promotion-440x280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/other/promotion-440x280.png -------------------------------------------------------------------------------- /other/promotion-440x280.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/other/promotion-440x280.xcf -------------------------------------------------------------------------------- /other/promotion-920x680.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/other/promotion-920x680.png -------------------------------------------------------------------------------- /other/promotion-920x680.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/other/promotion-920x680.xcf -------------------------------------------------------------------------------- /other/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/other/screenshot-1.png -------------------------------------------------------------------------------- /other/screenshot-1.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/other/screenshot-1.xcf -------------------------------------------------------------------------------- /other/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/other/screenshot-2.png -------------------------------------------------------------------------------- /other/screenshot-2.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaerae/multiple-pip-changer/HEAD/other/screenshot-2.xcf --------------------------------------------------------------------------------