Upload to Imgur
When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.
什么是Upload to Imgur?
Upload to Imgur是由b3zman41开发的Chrome扩展程序,该扩展的主要功能是“When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.”。
扩展截图
下载Upload to Imgur扩展crx文件
下载Upload to Imgur扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
When you right click an image, a context menu will appear allowing you to upload the image directly to imgur.
扩展基本信息
名称 | |
ID | kedcacdiooafipfmpdgdjaaekkdnhibn |
官方URL | https://chrome.google.com/webstore/detail/upload-to-imgur/kedcacdiooafipfmpdgdjaaekkdnhibn |
简介 | When you right click an image, a context menu will appear allowing you to upload the image directly to imgur. |
文件大小 | 679 KB |
安装次数 | 857 |
当前版本 | 2.2 |
更新时间 | 2015-02-27 |
上架时间 | 2015-02-27 |
评分 | 3.73/5 共11次评分 |
开发者 | b3zman41 |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Upload to Imgur", "version": "2.2", "minimum_chrome_version": "23", "icons": { "16": "imgur_16.png", "128": "imgur_128.png" }, "permissions": [ "contextMenus", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "main.js", "jquery.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [], "js": [ "jquery.js", "content_script.js" ] } ] } |