Search Trends

Gathers trend data for your Google searches

什么是Search Trends?

Search Trends是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Gathers trend data for your Google searches”。

扩展截图

screenshot

下载Search Trends扩展crx文件

下载Search Trends扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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 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"
}