├── .gitignore ├── LICENSE ├── README.md └── templates ├── arxiv-clipper.json ├── chatgpt-clipper.json ├── goodreads-clipper.json ├── google-maps-clipper.json ├── imdb-clipper.json ├── imdb-reference-clipper.json ├── letterboxd-clipper.json ├── product-clipper.json ├── recipes-clipper.json ├── redfin-clipper.json ├── wikipedia-clipper.json └── youtube-clipper.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kepano/clipper-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kepano/clipper-templates/HEAD/README.md -------------------------------------------------------------------------------- /templates/arxiv-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kepano/clipper-templates/HEAD/templates/arxiv-clipper.json -------------------------------------------------------------------------------- /templates/chatgpt-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kepano/clipper-templates/HEAD/templates/chatgpt-clipper.json -------------------------------------------------------------------------------- /templates/goodreads-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kepano/clipper-templates/HEAD/templates/goodreads-clipper.json -------------------------------------------------------------------------------- /templates/google-maps-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kepano/clipper-templates/HEAD/templates/google-maps-clipper.json -------------------------------------------------------------------------------- /templates/imdb-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kepano/clipper-templates/HEAD/templates/imdb-clipper.json -------------------------------------------------------------------------------- /templates/imdb-reference-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kepano/clipper-templates/HEAD/templates/imdb-reference-clipper.json -------------------------------------------------------------------------------- /templates/letterboxd-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kepano/clipper-templates/HEAD/templates/letterboxd-clipper.json -------------------------------------------------------------------------------- /templates/product-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kepano/clipper-templates/HEAD/templates/product-clipper.json -------------------------------------------------------------------------------- /templates/recipes-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kepano/clipper-templates/HEAD/templates/recipes-clipper.json -------------------------------------------------------------------------------- /templates/redfin-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kepano/clipper-templates/HEAD/templates/redfin-clipper.json -------------------------------------------------------------------------------- /templates/wikipedia-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kepano/clipper-templates/HEAD/templates/wikipedia-clipper.json -------------------------------------------------------------------------------- /templates/youtube-clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kepano/clipper-templates/HEAD/templates/youtube-clipper.json --------------------------------------------------------------------------------