xob0t / Google-Photos-Toolkit

Userscript to filter, search, organize, or delete your Google Photos library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GitHub Downloads (all assets, all releases)

Google Photos Toolkit

Bulk organize your media

demo

How It Works

In your browser, utilizing GP's undocumented web api

How To Install

  1. Install any recommended userscript manager for your browser

  2. Click Install

  3. Accept installation

How to use

Tutorial
  1. Go to photos.google.com and click the GPTK icon in the top bar to open it

    demo

  2. Select a source from which to read from:

    demo

  3. Use Filters to filter found items with:

    demo

  4. Select an action to apply to found items:

    demo

Finding space-consuming media

This example groups all space-consuming media in one album.

  1. Make sure "Library" is the selected source
  2. Select SPACE-CONSUMING in the Space filter
  3. Select action Add to new album

Deleting all media in the library

As simple as selecting "Library" source, clicking Move to trash, then clearing it.

Use GPTK's api

GPTK exports it's api class globally so you can use it in your browser's console. It's much more powerful than the UI!

Example usage.

// getting the fist page of the library by taken date
const libraryPage = await gptkApi.getItemsByTakenDate()
// getting the info of the first item on the page
const itemInfo = await gptkApi.getItemInfo(libraryPage.items[0].mediaKey)
console.log(itemInfo)

Contributions welcome

If you want to learn more about how GP's api works, read https://kovatch.medium.com/deciphering-google-batchexecute-74991e4e446c
I just found this post, after doing all the work from zero :D

Also, i've made a userscript that parses all responses and logs them to console in a more readable way, you can find it here - https://github.com/xob0t/Google-Photos-Toolkit/tree/main/tools

BUGS

If something does not work, open an issue and describe it in detail

If you have a question, open a discussion

Credits

Borrowed some code and UI inspiration from undiscord

If GPTK is useful to you, please consider supporting the project:

Steam

BTC 12znTocLytrrYhQT4AJVeJdR8KTULWbKb7

About

Userscript to filter, search, organize, or delete your Google Photos library

License:MIT License


Languages

Language:JavaScript 71.4%Language:HTML 19.2%Language:CSS 9.5%