Add to photos

Add context menu to save photos to google photos

什么是Add to photos?

Add to photos是由extensions guru开发的Chrome扩展程序,该扩展的主要功能是“Add context menu to save photos to google photos”。

扩展截图

screenshot

下载Add to photos扩展crx文件

下载Add to photos扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Add to photos Add to photos
ID amcoamjdplaalnjkcbildpnjpfjeiddb
官方URL https://chromewebstore.google.com/detail/add-to-photos/amcoamjdplaalnjkcbildpnjpfjeiddb
简介 Add context menu to save photos to google photos
文件大小 11.72 KB
安装次数 1,663
当前版本 1.1.1
更新时间 2021-01-08
上架时间 2020-12-24
评分 3.67/5 共3次评分
开发者 extensions guru
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    ]
}