Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Bulk Select Google Photos",
"version": "1.40",
"description": "Select multiple photos on Google Photos with just one click and then bulk delete, download, archive, share etc.",
"permissions": [
"activeTab",
"storage",
"contextMenus"
],
"action": [],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/photos.google.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
]
}
],
"icons": {
"48": "assets\/icon-48.png",
"128": "assets\/icon-128.png"
}
}