├── .eslintrc.json ├── .github ├── dependabot.yml └── workflows │ └── lint.yml ├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── background.js ├── logo128.png ├── logo128_gray.png ├── logo48.png ├── logo48_gray.png ├── manifest-firefox.json ├── manifest.json ├── package.json ├── privacy_consent.html └── privacy_consent.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessejanderson/skylink/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessejanderson/skylink/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessejanderson/skylink/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessejanderson/skylink/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessejanderson/skylink/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessejanderson/skylink/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessejanderson/skylink/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessejanderson/skylink/HEAD/README.md -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessejanderson/skylink/HEAD/background.js -------------------------------------------------------------------------------- /logo128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessejanderson/skylink/HEAD/logo128.png -------------------------------------------------------------------------------- /logo128_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessejanderson/skylink/HEAD/logo128_gray.png -------------------------------------------------------------------------------- /logo48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessejanderson/skylink/HEAD/logo48.png -------------------------------------------------------------------------------- /logo48_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessejanderson/skylink/HEAD/logo48_gray.png -------------------------------------------------------------------------------- /manifest-firefox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessejanderson/skylink/HEAD/manifest-firefox.json -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessejanderson/skylink/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessejanderson/skylink/HEAD/package.json -------------------------------------------------------------------------------- /privacy_consent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessejanderson/skylink/HEAD/privacy_consent.html -------------------------------------------------------------------------------- /privacy_consent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessejanderson/skylink/HEAD/privacy_consent.js --------------------------------------------------------------------------------