Quotes
Takes notes when browsing webpages
Quotes란 무엇입니까?
Quotes은(는) norridev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Takes notes when browsing webpages"입니다.
확장 프로그램 스크린샷
Quotes 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
We all browse hundreds of webpages every day. But how many of them do you still remember? With Quotes, you can easily keep track of your favorite web content. Start building your web content collection in 2 steps: 1) Go to any webpage and select any content that you'd like to keep. 2) Right click and choose 'add to Quotes' Congratulations, you just created your first quote! Enjoy! ------------------------------------------------- Team App Developer : [email protected] Cool UI Design : [email protected] http://dusuantou.com Please feel free to contact us if you have any feedback or suggestions. Also, special thanks to Una, Micky([email protected]) & Shirley([email protected]) for your input!
확장 프로그램 기본 정보
이름 | Quotes |
ID | efjijadimklfhajimkncmkebmcjmfbmg |
공식 URL | https://chromewebstore.google.com/detail/quotes/efjijadimklfhajimkncmkebmcjmfbmg |
설명 | Takes notes when browsing webpages |
파일 크기 | 235 KB |
설치 횟수 | 65 |
현재 버전 | 0.1.3 |
최근 업데이트 | 2013-05-08 |
출시 날짜 | 2013-05-07 |
평점 | 5.00/5 총 5 개의 평점 |
개발자 | norridev |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Quotes", "description": "Takes notes when browsing webpages", "version": "0.1.3", "browser_action": { "default_icon": "icon128.png", "default_popup": "popup.html" }, "permissions": [ "contextMenus", "storage" ], "icons": { "16": "icon.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/www.google.com\/*" ], "js": [ "jquery-1.9.1.min.js" ] } ], "background": { "scripts": [ "background.js" ] }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |