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文件
下載Google Analytics User Interface Cleaner擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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\/" ] } |