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 |
| 官方URL | 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
} | |