Add to photos
Add context menu to save photos to google photos
Wat is Add to photos?
Add to photos is een Chrome-extensie ontwikkeld door extensions guru, en de belangrijkste functie is "Add context menu to save photos to google photos".
Extensie Screenshots
Download het CRX-bestand van de extensie Add to photos
Download Add to photos-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Add "Add to google photos" context menu to quickly add images to google photos Basisinformatie over de Extensie
| Naam | |
| ID | amcoamjdplaalnjkcbildpnjpfjeiddb |
| Officiële URL | https://chromewebstore.google.com/detail/add-to-photos/amcoamjdplaalnjkcbildpnjpfjeiddb |
| Beschrijving | Add context menu to save photos to google photos |
| Bestandsgrootte | 11.72 KB |
| Aantal Installaties | 1,663 |
| Huidige Versie | 1.1.1 |
| Laatst Bijgewerkt | 2021-01-08 |
| Publicatiedatum | 2020-12-24 |
| Beoordeling | 3.67/5 Totaal 3 Beoordelingen |
| Ontwikkelaar | extensions guru |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Add to photos",
"version": "1.1.1",
"description": "Add context menu to save photos to google photos",
"manifest_version": 2,
"icons": {
"128": "icon_128.png",
"64": "icon_64.png"
},
"browser_action": {
"default_title": "AddPhotos, speedy and safety"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"content.css"
],
"js": [
"contentScript.js"
]
}
],
"oauth2": {
"client_id": "492564831811-v22b74kgolbf5k0s0i401e3qorg34h2g.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/photoslibrary.appendonly"
]
},
"permissions": [
"storage",
"identity",
"contextMenus"
]
} | |