Google Page Speed Analyzer
This extension will analyze a page using Google Page Speed
Google Page Speed Analyzer란 무엇입니까?
Google Page Speed Analyzer은(는) https://hhomepage.ch에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will analyze a page using Google Page Speed"입니다.
확장 프로그램 스크린샷
Google Page Speed Analyzer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension gives you a quick and easy way to - check the google page speed score of a website - directly download optimized images to speed up your website - display images sorted by filesize
확장 프로그램 기본 정보
이름 | |
ID | fhfeikfenbbbnoloadmllfjfgckcoolc |
공식 URL | https://chrome.google.com/webstore/detail/google-page-speed-analyze/fhfeikfenbbbnoloadmllfjfgckcoolc |
설명 | This extension will analyze a page using Google Page Speed |
파일 크기 | 678 KB |
설치 횟수 | 158 |
현재 버전 | 1.1 |
최근 업데이트 | 2017-07-02 |
출시 날짜 | 2017-07-02 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://hhomepage.ch |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://hhomepage.ch |
개인정보 보호 정책 페이지 URL | https://hhomepage.ch/datenschutzerklarung |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Page Speed Analyzer", "description": "This extension will analyze a page using Google Page Speed", "version": "1.1", "icons": { "16": "PS_16.png", "48": "PS_48.png", "128": "PS_128.png" }, "browser_action": { "default_icon": "PS_48.png", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "jquery-3.2.1.js", "popup.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "content_security_policy": "script-src 'self' https:\/\/www.googleapis.com; object-src 'self'", "permissions": [ "tabs", "http:\/\/localhost\/", "http:\/\/*\/*", "https:\/\/*\/*", "https:\/\/www.googleapis.com\/pagespeedonline\/v2\/runPagespeed?*" ] } |