Control Panel Version Check
Check what version of cPanel or Plesk a control panel is powered by.
什麼是Control Panel Version Check?
Control Panel Version Check是由White Fir Design開發的Chrome擴展程式,該擴展的主要功能是“Check what version of cPanel or Plesk a control panel is powered by.”。
擴展截圖
下載Control Panel Version Check擴展crx文件
下載Control Panel Version Check擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Checks if control panels are powered by cPanel or Plesk, what version they are running, and indicates if the version in use is outdated.
Recent Changes
1.0.9: Updated for EOL of cPanel 11.48.
1.0.8: Updated for EOL of cPanel 11.46.
1.0.7: Updated for EOL of cPanel 11.44.
Updated for EOL of Plesk 10. 擴展基本資訊
| 名稱 | |
| ID | bkgcmmmkhfdobnaaepcgaojgikjilgml |
| 官方網址 | https://chromewebstore.google.com/detail/control-panel-version-che/bkgcmmmkhfdobnaaepcgaojgikjilgml |
| 簡介 | Check what version of cPanel or Plesk a control panel is powered by. |
| 檔案大小 | 15.15 KB |
| 安裝次數 | 84 |
| 目前版本 | 1.0.9 |
| 更新時間 | 2016-02-04 |
| 上架時間 | 2016-02-04 |
| 評分 | 3.00/5 共 2 次評分 |
| 開發者 | White Fir Design |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | http://www.whitefirdesign.com/control-panel-version-check?pk_campaign=CPVC-Chrome |
| 說明頁面URL | http://www.whitefirdesign.com/control-panel-version-check |
| 隱私政策頁面URL | https://www.whitefirdesign.com/chrome-extension-privacy-policy.html |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Control Panel Version Check",
"description": "__MSG_extension_description__",
"version": "1.0.9",
"manifest_version": 2,
"default_locale": "en",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"page_action": {
"default_title": "Control Panel Version Check"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content-script.js"
],
"run_at": "document_idle",
"all_frames": false
}
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"homepage_url": "http:\/\/www.whitefirdesign.com\/control-panel-version-check?pk_campaign=CPVC-Chrome",
"offline_enabled": true
} | |