PiHole Browser Extension

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

PiHole Browser Extensionคืออะไร?

PiHole Browser Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย badsgahhl และคุณลักษณะหลักของมันคือ "Browser extension to control your PiHole. Built with Vue, Typescript and ❤"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PiHole Browser Extension

ดาวน์โหลดไฟล์ส่วนขยาย PiHole Browser Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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__"
        }
    }
}