Search Trends
Gathers trend data for your Google searches
Search Trends란 무엇입니까?
Search Trends은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Gathers trend data for your Google searches"입니다.
확장 프로그램 스크린샷
Search Trends 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Search trends is a tool that allows you to see location search data in real time using data from Google trends. The tool allows you to hover over a map to see search trends in the past year, see related queries, and provides realistic data for marketers looking to grow their business.
확장 프로그램 기본 정보
이름 | Search Trends |
ID | jofipiopohkiomefophlddhgflnmjclo |
공식 URL | https://chromewebstore.google.com/detail/search-trends/jofipiopohkiomefophlddhgflnmjclo |
설명 | Gathers trend data for your Google searches |
파일 크기 | 1.27 MB |
설치 횟수 | 2,000 |
현재 버전 | 0.1 |
최근 업데이트 | 2019-04-26 |
출시 날짜 | 2019-04-26 |
평점 | 4.62/5 총 13 개의 평점 |
개발자 | Unknown |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://develomark.com |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "icons": { "128": "images\/icon.png" }, "browser_action": { "default_icon": "images\/icon.png", "default_popup": "html\/popup.html" }, "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/*" ], "js": [ "js\/content.js" ] } ], "options_page": "html\/options.html", "devtools_page": "html\/devtools.html", "permissions": [ "https:\/\/trends.google.com\/*", "https:\/\/www.google.com\/*", "storage" ], "web_accessible_resources": [ "js\/*", "html\/*", "css\/*", "images\/*", "*.html" ], "content_security_policy": "script-src 'self'; object-src 'self'", "name": "Search Trends", "version": "0.1", "description": "Gathers trend data for your Google searches" } |