Skip to content

Commit 1e7072b

Browse files
author
Sage
committed
chore: bump version to 2.0.2
1 parent aee609b commit 1e7072b

File tree

2 files changed

+17
-8
lines changed

2 files changed

+17
-8
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "google-photos-delete-tool",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"private": true,
5-
"description": "Bulk delete photos from Google Photos Chrome extension & standalone script",
5+
"description": "Bulk delete photos from Google Photos \u2014 Chrome extension & standalone script",
66
"author": "Kyle Tse <shtse8@gmail.com>",
77
"license": "MIT",
88
"type": "module",

src/extension/manifest.json

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
{
22
"manifest_version": 3,
33
"name": "Google Photos Delete Tool",
4-
"version": "2.0.1",
5-
"description": "The fastest way to bulk delete your Google Photos — up to 25x faster than manual deletion.",
6-
"permissions": ["activeTab", "storage"],
7-
"host_permissions": ["https://photos.google.com/*"],
4+
"version": "2.0.2",
5+
"description": "The fastest way to bulk delete your Google Photos \u2014 up to 25x faster than manual deletion.",
6+
"permissions": [
7+
"activeTab",
8+
"storage"
9+
],
10+
"host_permissions": [
11+
"https://photos.google.com/*"
12+
],
813
"background": {
914
"service_worker": "background.js"
1015
},
@@ -19,8 +24,12 @@
1924
},
2025
"content_scripts": [
2126
{
22-
"matches": ["https://photos.google.com/*"],
23-
"js": ["content.js"]
27+
"matches": [
28+
"https://photos.google.com/*"
29+
],
30+
"js": [
31+
"content.js"
32+
]
2433
}
2534
],
2635
"icons": {

0 commit comments

Comments
 (0)