PiHole Browser Extension

Browser extension to control your PiHole. Built with Vue, Typescript and ❤

PiHole Browser Extension란 무엇입니까?

PiHole Browser Extension은(는) badsgahhl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browser extension to control your PiHole. Built with Vue, Typescript and ❤"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

PiHole Browser Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        PiHole browser extension is a small browser extension for Chrome and Firefox.
With this extension you can control your PiHole remotely (e.g. Turning it on/off, black/white listing current tab, etc.).

Features:
- Disable your PiHole(s) easily with one click
- Individual configuration for multiple PiHoles
- Dark Mode depending on your OS Settings
- Compact UI
- White-/Blacklist your current tabs url with one click
- Shortcuts - Use features quickly with a hotkey shortcut or pages context menu

Please follow the install instructions on the offical github page:

https://github.com/badsgahhl/pihole-browser-extension                    

확장 프로그램 기본 정보

이름 PiHole Browser Extension PiHole Browser Extension
ID ngoafjpapneaopfkpboebcahajopcifi
공식 URL https://chromewebstore.google.com/detail/pihole-browser-extension/ngoafjpapneaopfkpboebcahajopcifi
설명 Browser extension to control your PiHole. Built with Vue, Typescript and ❤
파일 크기 337 KB
설치 횟수 7,186
현재 버전 3.0.2
최근 업데이트 2022-01-09
출시 날짜 2020-07-02
평점 4.48/5 총 27 개의 평점
개발자 badsgahhl
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/badsgahhl/pihole-browser-extension
도움말 페이지 URL https://github.com/badsgahhl/pihole-browser-extension
지원되는 언어 de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PiHole Browser Extension",
    "version": "3.0.2",
    "author": "Pascal Glaser",
    "description": "__MSG_manifest_description__",
    "default_locale": "en",
    "icons": {
        "48": "icon\/icon-48.png",
        "96": "icon\/icon-96.png",
        "128": "icon\/icon-128.png"
    },
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "icon\/icon-16.png",
            "32": "icon\/icon-32.png"
        },
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "background": {
        "persistent": true,
        "page": "background.html"
    },
    "permissions": [
        "storage",
        "",
        "activeTab",
        "contextMenus"
    ],
    "commands": {
        "hotkey-toggle-pihole": {
            "description": "__MSG_context_menu_toggle_pi_holes__"
        },
        "hotkey-blacklist-current-domain": {
            "description": "__MSG_context_menu_blacklist_current_domain__"
        },
        "hotkey-whitelist-current-domain": {
            "description": "__MSG_context_menu_whitelist_current_domain__"
        },
        "hotkey-open-settings": {
            "description": "__MSG_context_menu_open_settings__"
        }
    }
}