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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } ] } |