This is the repository for the "slow looking" Chrome extension. It allows you to slow look any IIIF-served image visible on any website by adding a clickable 'eye' icon next to each image. Clicking on that will take you to Cogapp's slow looking website with the relevant image already loaded.
If you want to install and run the latest stable version of the extension, please visit the slow looking extension page on the Chrome store.
To run the development version, or to modify it yourself, proceed as follows:
- Checkout the
development
branch to a local directory - Open the Extension Management page by navigating to (chrome://extensions) or by clicking on the Chrome menu, hovering over More Tools then selecting Extensions.
- Enable Developer Mode by clicking the toggle switch next to Developer mode.
- Click the LOAD UNPACKED button and select the extension directory that you just checked out.
Please log an issue or email slowlooking@cogapp.com. Alternatively, just update the code and contribute a pull request (see "Contributing" below).
Here's a list of things that are on our road-map:
- Add links as siblings of the a element surrounding an image links, not the image itself (see Wellcome Collection below)
- Better matching of images (e.g. 'native' as well as 'default' - YCBA; srcset - AIC)
- Make it work with embedded Openseadragon viewers
- Better handling of Javascript-rendered pages (e.g. NGA thumbnails)
- Better placement and icons (SVG)
Here's a list of some of the sites that are known to work (or not), with sample pages to visit:
- Qatar Digital Library
- Endangered Archives Programme
- National Gallery of Art
- Art Institute Chicago
- Art Gallery Ontario
- Chester Beatty - we mangle the DOM and hyperlink on the image instead of under it
- Wellcome Collection - listing page: sibling problem so doesn't display, individual page: displays, but MASSIVE
- AIC artwork page - Uses
srcset
; we currently only look forsrc
N.b. a workaround for anything in this category is to right-click on an image, then 'open in new tab'. Then you'll see the image standalone with the slow looking link below. E.g. this image from the Wellcome Collection
- Biblissima - no IIIF thumbnails
- Yale Center for British Art - no IIIF thumbnails
- Fork it (https://github.com/Cogapp/slowlooking-chrome-ext/fork)
- Create your feature branch (
git checkout -b feature/fooBar
) - Commit your changes (
git commit -am 'Add some fooBar'
) - Push to the branch (
git push origin feature/fooBar
) - Create a new Pull Request