Google Analytics User Interface Cleaner
Clean unnecessary elements dislpayed on the user interface of Google Analytics, and so, be more productive with GA data access.
Google Analytics User Interface Cleaner란 무엇입니까?
Google Analytics User Interface Cleaner은(는) mehdi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Clean unnecessary elements dislpayed on the user interface of Google Analytics, and so, be more productive with GA data access."입니다.
확장 프로그램 스크린샷
Google Analytics User Interface Cleaner 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
During this critical period for analytics devices migration from Google Analytics Universal to the implementation and deployment of new data collection, this tools is a small help to remove any disturbing elements from the user interface to go fast for analytics experts, knowing the situation about the sunset of the legacy version of the analytics tool from Google.
확장 프로그램 기본 정보
이름 | Google Analytics User Interface Cleaner |
ID | plcclkbjnajipakjfegafnjeaklbeifb |
공식 URL | https://chromewebstore.google.com/detail/google-analytics-user-int/plcclkbjnajipakjfegafnjeaklbeifb |
설명 | Clean unnecessary elements dislpayed on the user interface of Google Analytics, and so, be more productive with GA data access. |
파일 크기 | 415 KB |
설치 횟수 | 199 |
현재 버전 | 0.1.1 |
최근 업데이트 | 2023-05-18 |
출시 날짜 | 2023-05-12 |
개발자 | mehdi |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://extension.withlookerstudio.com/privacy-policy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Google Analytics User Interface Cleaner", "author": "Mehdi Oudjida", "description": "Clean unnecessary elements dislpayed on the user interface of Google Analytics, and so, be more productive with GA data access.", "version": "0.1.1", "background": { "service_worker": "scripts\/background.js" }, "icons": { "16": "ga_ui_cleaner_16.png", "32": "ga_ui_cleaner_32.png", "48": "ga_ui_cleaner_48.png", "128": "ga_ui_cleaner_128.png" }, "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/analytics.google.com\/*" ], "js": [ "scripts\/content.js" ] } ], "permissions": [ "storage" ], "host_permissions": [ "https:\/\/analytics.google.com\/" ] } |