Add to photos
Add context menu to save photos to google photos
Hvad er Add to photos?
Add to photos er en Chrome-udvidelse udviklet af extensions guru, og dens hovedfunktion er "Add context menu to save photos to google photos".
Udvidelsesskærmbilleder
Download Add to photos-udvidelses-CRX-fil
Download Add to photos-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Add "Add to google photos" context menu to quickly add images to google photos
Grundlæggende oplysninger om udvidelsen
Navn | Add to photos |
ID | amcoamjdplaalnjkcbildpnjpfjeiddb |
Officiel URL | https://chromewebstore.google.com/detail/add-to-photos/amcoamjdplaalnjkcbildpnjpfjeiddb |
Beskrivelse | Add context menu to save photos to google photos |
Filstørrelse | 11.72 KB |
Antal Installationer | 1,663 |
Nuværende Version | 1.1.1 |
Senest Opdateret | 2021-01-08 |
Udgivelsesdato | 2020-12-24 |
Bedømmelse | 3.67/5 Samlet 3 Bedømmelser |
Udvikler | extensions guru |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } |