Add to photos

Add context menu to save photos to google photos

Was ist Add to photos?

Add to photos ist eine Chrome-Erweiterung, die von extensions guru entwickelt wurde, und ihr Hauptmerkmal ist "Add context menu to save photos to google photos".

Erweiterungsscreenshots

screenshot

Add to photos-Erweiterungs-CRX-Datei herunterladen

Laden Sie Add to photos-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Add "Add to google photos" context menu to quickly add images to google photos                    

Grundlegende Informationen zur Erweiterung

Name Add to photos Add to photos
ID amcoamjdplaalnjkcbildpnjpfjeiddb
Offizielle URL https://chromewebstore.google.com/detail/add-to-photos/amcoamjdplaalnjkcbildpnjpfjeiddb
Beschreibung Add context menu to save photos to google photos
Dateigröße 11.72 KB
Installationsanzahl 1,663
Aktuelle Version 1.1.1
Letztes Update 2021-01-08
Veröffentlichungsdatum 2020-12-24
Bewertung 3.67/5 Insgesamt 3 Bewertungen
Entwickler extensions guru
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}