Version Check
Check what version of web software is powering a web page.
Version Check란 무엇입니까?
Version Check은(는) White Fir Design에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Check what version of web software is powering a web page."입니다.
확장 프로그램 스크린샷
Version Check 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Version Check determines if web pages are powered by web software, what version they are running, and indicates if the version in use is outdated. It includes checks for: • Drupal • Joomla • Magento (Community Edition only) • MediaWiki • Moodle • OpenCart • phpMyAdmin • PrestaShop • Revive Adserver (formerly OpenX) • WordPress • Zen Cart Try it out for free for 30 days. We also offer separate extensions if you just want to check for one of the supported software products. Recent Changes 1.1.26: Updated for release of Joomla 3.6.5. 1.1.25: Updated for release of Drupal 7.53 and 8.2.4. 1.1.24: Updated for release of WordPress 4.7.
확장 프로그램 기본 정보
이름 | Version Check |
ID | eihipkpiiekmobooapflpdhpkpjohahe |
공식 URL | https://chromewebstore.google.com/detail/version-check/eihipkpiiekmobooapflpdhpkpjohahe |
설명 | Check what version of web software is powering a web page. |
파일 크기 | 58.65 KB |
설치 횟수 | 398 |
현재 버전 | 1.1.26 |
최근 업데이트 | 2017-01-22 |
출시 날짜 | 2017-01-22 |
평점 | 2.30/5 총 10 개의 평점 |
개발자 | White Fir Design |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.whitefirdesign.com/version-check?pk_campaign=VC-Chrome |
도움말 페이지 URL | http://www.whitefirdesign.com/version-check |
개인정보 보호 정책 페이지 URL | https://www.whitefirdesign.com/chrome-extension-privacy-policy.html |
지원되는 언어 | de,en,fr,nl,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Version Check", "description": "__MSG_extension_description__", "version": "1.1.26", "manifest_version": 2, "default_locale": "en", "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_title": "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\/version-check?pk_campaign=VC-Chrome", "offline_enabled": true, "permissions": [ "identity", "management", "storage", "https:\/\/www.googleapis.com\/" ], "oauth2": { "client_id": "99891619034-drs08ef2dd8gft6k827nhr3brll22ffn.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/chromewebstore.readonly" ] } } |