Chrome Note Keeper
Chrome Note Keeper: keep notes on specific websites pages.
Chrome Note Keeper란 무엇입니까?
Chrome Note Keeper은(는) Alessandro Pietrantonio에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome Note Keeper: keep notes on specific websites pages."입니다.
확장 프로그램 스크린샷
Chrome Note Keeper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Keep notes on every website page and read it whenever you want! This extension give you the ability to write down notes about a specific web page and save it to Chrome storage. A little badge near the extension icon notify you the presence of a note. CHANGELOGS: --- v1.0 --- - Updated manifest file - Fixes on background --- v0.5 --- - Fixes on icon badge --- v0.4 --- - Added icon badge to notify the presence of notes --- v0.3 --- - Added import/export to options page - Fixes on options page - Larger textarea on popup - Fixes on popup --- v0.2 --- - Textarea label fixed --- v0.1 --- - First release
확장 프로그램 기본 정보
이름 | Chrome Note Keeper |
ID | llocbjbocnpindmhcankkhiidpfaiedp |
공식 URL | https://chromewebstore.google.com/detail/chrome-note-keeper/llocbjbocnpindmhcankkhiidpfaiedp |
설명 | Chrome Note Keeper: keep notes on specific websites pages. |
파일 크기 | 31.8 KB |
설치 횟수 | 311 |
현재 버전 | 1.0 |
최근 업데이트 | 2022-04-22 |
출시 날짜 | 2020-07-04 |
평점 | 4.00/5 총 1 개의 평점 |
개발자 | Alessandro Pietrantonio |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/pietrantonio91/chrome-note-keeper |
도움말 페이지 URL | https://alessandropietrantonio.it/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chrome Note Keeper", "version": "1.0", "action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/notekeeper16.png", "32": "icons\/notekeeper32.png", "64": "icons\/notekeeper64.png", "128": "icons\/notekeeper128.png" } }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js" ], "run_at": "document_idle", "all_frames": true, "match_about_blank": true } ], "options_page": "options.html", "description": "Chrome Note Keeper: keep notes on specific websites pages.", "icons": { "16": "icons\/notekeeper16.png", "32": "icons\/notekeeper32.png", "64": "icons\/notekeeper64.png", "128": "icons\/notekeeper128.png" }, "background": { "service_worker": "js\/background.js" }, "manifest_version": 3, "permissions": [ "storage", "tabs" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } |