├── .github └── workflows │ ├── check.yaml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── biome.json ├── icon-gen ├── icon.svg └── run.js ├── lefthook.yml ├── package.json ├── privacy-policy.md ├── scripts ├── build.js └── check-version.js ├── src ├── @types │ └── index.d.ts ├── background.html ├── background.mjs ├── donation.css ├── iconfont │ ├── MaterialIconsOutlined.woff2 │ └── material-icons.css ├── images │ ├── bmc-logo.svg │ ├── icon128.png │ ├── icon16.png │ ├── icon32.png │ ├── icon48.png │ └── paypal-logo.svg ├── manifest-firefox.json ├── manifest.json ├── modules │ ├── cookie_format.mjs │ ├── get_all_cookies.mjs │ └── save_to_file.mjs ├── popup-options.css ├── popup.css ├── popup.dark.css ├── popup.html ├── popup.mjs └── table-nowrap.js └── ss.png /.github/workflows/check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/.github/workflows/check.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/biome.json -------------------------------------------------------------------------------- /icon-gen/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/icon-gen/icon.svg -------------------------------------------------------------------------------- /icon-gen/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/icon-gen/run.js -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/lefthook.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/package.json -------------------------------------------------------------------------------- /privacy-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/privacy-policy.md -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/check-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/scripts/check-version.js -------------------------------------------------------------------------------- /src/@types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/src/@types/index.d.ts -------------------------------------------------------------------------------- /src/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/src/background.html -------------------------------------------------------------------------------- /src/background.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/src/background.mjs -------------------------------------------------------------------------------- /src/donation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/src/donation.css -------------------------------------------------------------------------------- /src/iconfont/MaterialIconsOutlined.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/src/iconfont/MaterialIconsOutlined.woff2 -------------------------------------------------------------------------------- /src/iconfont/material-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/src/iconfont/material-icons.css -------------------------------------------------------------------------------- /src/images/bmc-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/src/images/bmc-logo.svg -------------------------------------------------------------------------------- /src/images/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/src/images/icon128.png -------------------------------------------------------------------------------- /src/images/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/src/images/icon16.png -------------------------------------------------------------------------------- /src/images/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/src/images/icon32.png -------------------------------------------------------------------------------- /src/images/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/src/images/icon48.png -------------------------------------------------------------------------------- /src/images/paypal-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/src/images/paypal-logo.svg -------------------------------------------------------------------------------- /src/manifest-firefox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/src/manifest-firefox.json -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/modules/cookie_format.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/src/modules/cookie_format.mjs -------------------------------------------------------------------------------- /src/modules/get_all_cookies.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/src/modules/get_all_cookies.mjs -------------------------------------------------------------------------------- /src/modules/save_to_file.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/src/modules/save_to_file.mjs -------------------------------------------------------------------------------- /src/popup-options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/src/popup-options.css -------------------------------------------------------------------------------- /src/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/src/popup.css -------------------------------------------------------------------------------- /src/popup.dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/src/popup.dark.css -------------------------------------------------------------------------------- /src/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/src/popup.html -------------------------------------------------------------------------------- /src/popup.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/src/popup.mjs -------------------------------------------------------------------------------- /src/table-nowrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/src/table-nowrap.js -------------------------------------------------------------------------------- /ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kairi003/Get-cookies.txt-LOCALLY/HEAD/ss.png --------------------------------------------------------------------------------