[READ-ONLY] Mirror of https://github.com/probablykasper/thumbnail-grabber. Chrome extension for grabbing thumbnails/covers
browser-extension chrome chrome-extension chrome-extention extension
0

Configure Feed

Select the types of activity you want to include in your feed.

v1.1.0

Kasper (Dec 11, 2020, 10:14 PM +0100) a4a4caea 886c21dc

+14 -8
+4
CHANGELOG.md
··· 1 + ## 1.1.0 - 2020 Dec 11 2 + - Added support for Spotify 3 + - Added support for YouTube Music 4 + 1 5 ## 1.0.2 - 2020 Jan 11 2 6 - Fixed error occuring for YouTube thumbnails (due to xhr cors policy) 3 7
+8 -6
README.md
··· 5 5 <h1 align="center" style="margin-top:0px"> 6 6 Thumbnail Grabber 7 7 </h1> 8 - <p align="center">Chrome extension for grabbing thumbnails/covers from YouTube and SoundCloud.</p> 8 + <p align="center">Chrome extension for grabbing thumbnails/covers from YouTube, SoundCloud, Spotify and YouTube Music.</p> 9 9 <p align="center"> 10 - <img alt="Chrome Web Store" src="https://img.shields.io/chrome-web-store/users/gbpjnjieenljpncojgiboejmolbihdob?color=4DB0F2&logo=Google%20Chrome&logoColor=white&style=flat-square"> 10 + <a href="https://chrome.google.com/webstore/detail/thumbnail-grabber/gbpjnjieenljpncojgiboejmolbihdob"> 11 + <img alt="Chrome Web Store" src="https://img.shields.io/chrome-web-store/users/gbpjnjieenljpncojgiboejmolbihdob?color=4DB0F2&logo=Google%20Chrome&logoColor=white&style=flat-square"> 12 + </a> 11 13 </p> 12 14 <br> 13 15 14 - Easily download/copy/open thumbnails and covers from YouTube and SoundCloud. Get it on the [Chrome Web Store](https://chrome.google.com/webstore/detail/thumbnail-grabber/gbpjnjieenljpncojgiboejmolbihdob). 16 + Easily download/copy/open thumbnails and covers from YouTube, SoundCloud, Spotify and YouTube Music. Get it on the [Chrome Web Store](https://chrome.google.com/webstore/detail/thumbnail-grabber/gbpjnjieenljpncojgiboejmolbihdob). 15 17 16 18 You can click the extension icon, use keyboard shortcuts or right click the page or links. You can customize the keyboard shortcuts, what clicking the extension icon does, and what context menu items are visible. 17 19 18 20 # Dev Instructions 19 21 20 - ### Folder info 22 + ## Folder info 21 23 `/src` 22 24 `/src/modules` 23 25 Files that should not be compiled/copies should be in the `/src/modules` folder. 24 26 25 - ### Setup 27 + ## Setup 26 28 1. Install [Node.js](https://nodejs.org/) (Version 12.11 or later recommended) 27 29 2. Run `npm install` to install dependencies 28 30 29 - ### Commands 31 + ## Commands 30 32 Build `/src` into `/build` and watch for changes. You can then load the `/build` folder as an unpacked extension in your browser. 31 33 ``` 32 34 npm run start
+2 -2
src/manifest.json
··· 1 1 { 2 2 "manifest_version": 2, 3 3 "name": "Thumbnail Grabber", 4 - "version": "1.0.2", 5 - "description": "Download thumbnails and covers from YouTube and SoundCloud", 4 + "version": "1.1.0", 5 + "description": "Download thumbnails and covers from YouTube, SoundCloud, Spotify and YouTube Music", 6 6 "background": { 7 7 "scripts": [ 8 8 "background.js"