Inspect and view changes in Bulk Select Google Photos source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Bulk Select Google Photos",
"version": "1.25",
"description": "Select multiple photos on Google Photos with just one click and then bulk delete, download, archive, share etc.",
"permissions": [
"activeTab"
],
"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"
}
}