YAM Allowlist Manager
Browser extension that automatically blocks all pages from any website that is not in your list of allowed websites.
YAM Allowlist Manager란 무엇입니까?
YAM Allowlist Manager은(는) https://sarangak.github.io/yam-allowlist-manager에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browser extension that automatically blocks all pages from any website that is not in your list of allowed websites."입니다.
확장 프로그램 스크린샷
YAM Allowlist Manager 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
YAM is an open-source, privacy-focused website manager. You create a list of allowed websites, and this extension will block access to all pages that are not in that list. The list is synchronized through Chrome to all of your devices, so you can log into Chrome with your child's account, add or modify entries in the list and they will synchronize in near real-time to a child's computer. You can also choose to block all content from other sites, but this requires a more complex configuration since many pages require content from other sites to operate correctly. Need help? Send me an email or open an issue on Github: https://github.com/sarangak/yam-allowlist-manager
확장 프로그램 기본 정보
이름 | YAM Allowlist Manager |
ID | aeepebmcdnjkjobnhfagojgfonkappej |
공식 URL | https://chromewebstore.google.com/detail/yam-allowlist-manager/aeepebmcdnjkjobnhfagojgfonkappej |
설명 | Browser extension that automatically blocks all pages from any website that is not in your list of allowed websites. |
파일 크기 | 238 KB |
설치 횟수 | 663 |
현재 버전 | 5.0.0 |
최근 업데이트 | 2023-04-29 |
출시 날짜 | 2020-06-19 |
평점 | 3.33/5 총 3 개의 평점 |
개발자 | https://sarangak.github.io/yam-allowlist-manager |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/sarangak/yam-allowlist-manager |
지원되는 언어 | en,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "default_locale": "en", "name": "YAM Allowlist Manager", "description": "Browser extension that automatically blocks all pages from any website that is not in your list of allowed websites.", "version": "5.0.0", "minimum_chrome_version": "96.0", "icons": { "16": "assets\/icon_16.png", "19": "assets\/icon_19.png", "32": "assets\/icon_32.png", "38": "assets\/icon_38.png", "128": "assets\/icon_128.png", "256": "assets\/icon_256.png", "512": "assets\/icon_512.png" }, "background": { "service_worker": "background.js" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "declarative_net_request": { "rule_resources": [ { "id": "rules", "enabled": true, "path": "rules.json" } ] }, "permissions": [ "storage", "declarativeNetRequestWithHostAccess" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } |