Add to photos

Add context menu to save photos to google photos

What is Add to photos?

Add to photos is a Chrome extension developed by extensions guru, and its main feature is "Add context menu to save photos to google photos".

Extension Screenshots

screenshot

Download Add to photos Extension CRX File

Download Add to photos extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Add to photos Add to photos
ID amcoamjdplaalnjkcbildpnjpfjeiddb
Official URL https://chromewebstore.google.com/detail/add-to-photos/amcoamjdplaalnjkcbildpnjpfjeiddb
Description Add context menu to save photos to google photos
File Size 11.72 KB
Installation Count 1,663
Current Version 1.1.1
Last Updated 2021-01-08
Publish Date 2020-12-24
Rating 3.67/5 Total 3 Ratings
Developer extensions guru
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}