Web Tracker
Web Tracker helps you track anything on the web.
Web Tracker란 무엇입니까?
Web Tracker은(는) yafasu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Web Tracker helps you track anything on the web."입니다.
확장 프로그램 스크린샷
Web Tracker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension helps you to track any texts that you are able to select on the web page. How to use: - Right click and select on "Select Element...", and choose the element content you want to keep on track. - A popup window will show up and ask you "Would you like to save this text?", click "OK" - After accepting the element you want to keep on track, it will be saved in your browser storage. - If you want to check all elements that you have been saved. Click on the top right corner "Web Tracker" icon, a popup will show up with all the elements. - The extension will do a self-check if the elements have any updates. - Element highlighted in yellow in the popup, means that the element has been changed or updated from the web page.
확장 프로그램 기본 정보
이름 | Web Tracker |
ID | eblicendjfflnkdiaclejeodniflplga |
공식 URL | https://chromewebstore.google.com/detail/web-tracker/eblicendjfflnkdiaclejeodniflplga |
설명 | Web Tracker helps you track anything on the web. |
파일 크기 | 32.9 KB |
설치 횟수 | 224 |
현재 버전 | 1.0.3 |
최근 업데이트 | 2021-11-08 |
출시 날짜 | 2021-10-16 |
개발자 | yafasu |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "yafasu", "action": { "default_icon": { "512": "img\/logo_512x512.png" }, "default_title": "Web Tracker" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "\/js\/scraperscript.js" ], "run_at": "document_start", "all_frames": true }, { "matches": [ "*:\/\/*\/*" ], "js": [ "\/js\/contentscript.js" ], "run_at": "document_start", "all_frames": false } ], "description": "Web Tracker helps you track anything on the web.", "icons": { "512": "img\/logo_512x512.png" }, "manifest_version": 3, "minimum_chrome_version": "88", "name": "Web Tracker", "permissions": [ "storage", "unlimitedStorage", "tabs", "scripting", "contextMenus" ], "host_permissions": [ "*:\/\/*\/*" ], "background": { "service_worker": "background.js" }, "short_name": "Web Tracker", "version": "1.0.3" } |