├── .gitignore ├── LICENSE.txt ├── README.md ├── Source ├── content_script.js └── manifest.json ├── logo.jpg └── screen.png /.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-wong/nft-to-silly-jpeg/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-wong/nft-to-silly-jpeg/HEAD/README.md -------------------------------------------------------------------------------- /Source/content_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-wong/nft-to-silly-jpeg/HEAD/Source/content_script.js -------------------------------------------------------------------------------- /Source/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-wong/nft-to-silly-jpeg/HEAD/Source/manifest.json -------------------------------------------------------------------------------- /logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-wong/nft-to-silly-jpeg/HEAD/logo.jpg -------------------------------------------------------------------------------- /screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-wong/nft-to-silly-jpeg/HEAD/screen.png --------------------------------------------------------------------------------