Search Trends
Gathers trend data for your Google searches
Search Trends là gì?
Search Trends là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Gathers trend data for your Google searches".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Search Trends
Tải xuống các tệp mở rộng Search Trends dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Search Trends |
ID | jofipiopohkiomefophlddhgflnmjclo |
URL Chính Thức | https://chromewebstore.google.com/detail/search-trends/jofipiopohkiomefophlddhgflnmjclo |
Mô tả | Gathers trend data for your Google searches |
Kích Thước Tệp | 1.27 MB |
Số Lần Cài Đặt | 2,000 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2019-04-26 |
Ngày Phát Hành | 2019-04-26 |
Đánh Giá | 4.62/5 Tổng số 13 Đánh Giá |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://develomark.com |
Ngôn Ngữ Được Hỗ Trợ | 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" } |