Post Office
Chrome email functions
Post Office란 무엇입니까?
Post Office은(는) https://it.nicksimmonds.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome email functions"입니다.
확장 프로그램 스크린샷
Post Office 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Post Office is an extension that adds the option to bypass your default email provider. You can keep sending via Outlook, Mail, etc. just by clicking links, but when you right-click you're presented with the option to send via a webmail provider. You can select which providers are available on the options page. You can also toggle on Post Office's mail bypass by clicking the icon. While toggled, Post Office will send mail links to your web mail provide of choice (set on the options page) rather than your machine's default mail client. Clicking again will return control to whatever you were using before for mail. Supports: * Gmail * Yahoo! mail * Microsoft Live mail * Outlook Web Access (must provide the web access URL in options)
확장 프로그램 기본 정보
이름 | Post Office |
ID | bpckloinaeafhkniklgjhbjicjhbbecj |
공식 URL | https://chromewebstore.google.com/detail/post-office/bpckloinaeafhkniklgjhbjicjhbbecj |
설명 | Chrome email functions |
파일 크기 | 83.82 KB |
설치 횟수 | 202 |
현재 버전 | 1 |
최근 업데이트 | 2012-11-08 |
출시 날짜 | 2012-11-08 |
평점 | 4.33/5 총 6 개의 평점 |
개발자 | https://it.nicksimmonds.com |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://nicksimmonds.com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Post Office", "version": "1", "manifest_version": 2, "options_page": "preferences.html", "description": "Chrome email functions", "browser_action": { "default_icon": "disicon.png", "default_title": "Post Office" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "jquery-1.7.2.min.js", "mailscripts.js" ] } ], "background": { "scripts": [ "mail.js", "toggle.js" ] }, "permissions": [ "*:\/\/*\/*", "contextMenus" ], "icons": { "16": "minicon.png", "48": "midicon.png", "128": "bigicon.png" } } |