Create Embeddable Links for Google Photos
Creates embeddable image links for google photos and places them on the clipboard. Supports direct image links and BBCode snippets.
什么是Create Embeddable Links for Google Photos?
Create Embeddable Links for Google Photos是由denovoPRO开发的Chrome扩展程序,该扩展的主要功能是“Creates embeddable image links for google photos and places them on the clipboard. Supports direct image links and BBCode snippets.”。
扩展截图
下载Create Embeddable Links for Google Photos扩展crx文件
下载Create Embeddable Links for Google Photos扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Google Photos is a great product, but it has a big weakness: It provides no mechanism to create easy to use links to your photos for sharing outside of Google Plus/Photos. This extension fixes that by providing context (right-click) menu options to create simple embeddable links (including BBCode style) to your photo, with optional resizing. When you select "Copy Image Link" and either embeddable or BBCode link from the context menu, the extension will create the appropriate link text and place it on your clipboard, ready for you to paste into a message or forum post etc. It works with most any online system that can process typical image links.
扩展基本信息
名称 | Create Embeddable Links for Google Photos |
ID | hmakijajeinknkeaepeicdejkhdigigh |
官方URL | https://chromewebstore.google.com/detail/create-embeddable-links-f/hmakijajeinknkeaepeicdejkhdigigh |
简介 | Creates embeddable image links for google photos and places them on the clipboard. Supports direct image links and BBCode snippets. |
文件大小 | 28.24 KB |
安装次数 | 606 |
当前版本 | 0.0.3 |
更新时间 | 2018-02-20 |
上架时间 | 2018-02-20 |
评分 | 3.25/5 共4次评分 |
开发者 | denovoPRO |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Create Embeddable Links for Google Photos", "version": "0.0.3", "description": "Creates embeddable image links for google photos and places them on the clipboard. Supports direct image links and BBCode snippets.", "background": { "scripts": [ "scripts\/eventPage.js" ], "persistent": false }, "permissions": [ "contextMenus", "clipboardWrite", "storage" ], "options_ui": { "page": "html\/options.html", "chrome_style": true }, "minimum_chrome_version": "6.0.0.0", "icons": { "16": "images\/link-symbol-16.png", "24": "images\/link-symbol-24.png", "32": "images\/link-symbol-32.png", "64": "images\/link-symbol-64.png", "128": "images\/link-symbol-128.png", "256": "images\/link-symbol-256.png", "512": "images\/link-symbol-512.png" } } |