PIA notify
This extension will show a message when your're not connected to PIA
什麼是PIA notify?
PIA notify是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“This extension will show a message when your're not connected to PIA”。
擴展截圖
下載PIA notify擴展crx文件
下載PIA notify擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This WebExtension (Chrome extension/Firefox Add-on) will scrape the private internet access website to determine if your're protected or not.
If not, it will temporarily show a warning on top of the page your're browsing.
This might be useful when you find privacy important and want a more in your face, but still subtle, warning that your VPN is down, for example:
- You have an OVPN client running on your router, so current VPN status is not easily visible.
- You hide your task bar / notification bar.
- You find the icons of the PIA apps too hard to read, or you forget about them every time. 擴展基本資訊
| 名稱 | |
| ID | lddgmcdbhkongehiiikdjjhccmapmmdp |
| 官方網址 | https://chromewebstore.google.com/detail/pia-notify/lddgmcdbhkongehiiikdjjhccmapmmdp |
| 簡介 | This extension will show a message when your're not connected to PIA |
| 檔案大小 | 120 KB |
| 安裝次數 | 16 |
| 目前版本 | 1.0.0 |
| 更新時間 | 2018-06-29 |
| 上架時間 | 2018-06-29 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | Unknown |
| 付費類型 | free |
| 擴展官網 | https://github.com/errier/pia-notify |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "PIA notify",
"version": "1.0.0",
"manifest_version": 2,
"description": "This extension will show a message when your're not connected to PIA",
"homepage_url": "https:\/\/github.com\/errier\/pia-notify",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_locale": "en",
"permissions": [
"*:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"js\/contentScript.js"
]
}
]
} | |