Add to photos

Add context menu to save photos to google photos

Apa itu Add to photos?

Add to photos adalah ekstensi Chrome yang dikembangkan oleh extensions guru, dan fitur utamanya adalah "Add context menu to save photos to google photos".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Add to photos

Unduh file ekstensi Add to photos dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Add to photos Add to photos
ID amcoamjdplaalnjkcbildpnjpfjeiddb
URL Resmi https://chromewebstore.google.com/detail/add-to-photos/amcoamjdplaalnjkcbildpnjpfjeiddb
Deskripsi Add context menu to save photos to google photos
Ukuran File 11.72 KB
Jumlah Instalasi 1,663
Versi Saat Ini 1.1.1
Terakhir Diperbarui 2021-01-08
Tanggal Publikasi 2020-12-24
Penilaian 3.67/5 Total 3 Penilaian
Pengembang extensions guru
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}