Chrome URL Notification
Notify user when the URL matches the registered patterns.
Chrome URL Notification란 무엇입니까?
Chrome URL Notification은(는) smori에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Notify user when the URL matches the registered patterns."입니다.
확장 프로그램 스크린샷
Chrome URL Notification 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Usage Register URL pattern and message ( and some settings ). You can use '*' like https://*.example.com/ - Message will be shown when browsing URL matches with registered pattern. - Display position of message: top / bottom / top left / top right / bottom left / bottom right
확장 프로그램 기본 정보
이름 | Chrome URL Notification |
ID | gdnmbdajkmabbkejinjnjdobmkbfhonn |
공식 URL | https://chromewebstore.google.com/detail/chrome-url-notification/gdnmbdajkmabbkejinjnjdobmkbfhonn |
설명 | Notify user when the URL matches the registered patterns. |
파일 크기 | 380 KB |
설치 횟수 | 261 |
현재 버전 | 7.0.0 |
최근 업데이트 | 2022-05-18 |
출시 날짜 | 2020-05-12 |
평점 | 4.00/5 총 1 개의 평점 |
개발자 | smori |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/smori1983/chrome-url-notification |
지원되는 언어 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Chrome URL Notification", "description": "Notify user when the URL matches the registered patterns.", "version": "7.0.0", "icons": { "16": "image\/icon_16.png", "48": "image\/icon_48.png", "128": "image\/icon_128.png" }, "default_locale": "en", "permissions": [ "storage", "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "js\/content.js" ], "run_at": "document_end" } ], "action": { "default_icon": "image\/icon_16.png", "default_title": "Chrome URL Notification", "default_popup": "html\/popup.html" }, "background": { "service_worker": "background.js" }, "options_page": "html\/options.html" } |