Search Trends

Gathers trend data for your Google searches

Was ist Search Trends?

Search Trends ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Gathers trend data for your Google searches".

Erweiterungsscreenshots

screenshot

Search Trends-Erweiterungs-CRX-Datei herunterladen

Laden Sie Search Trends-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Search Trends Search Trends
ID jofipiopohkiomefophlddhgflnmjclo
Offizielle URL https://chromewebstore.google.com/detail/search-trends/jofipiopohkiomefophlddhgflnmjclo
Beschreibung Gathers trend data for your Google searches
Dateigröße 1.27 MB
Installationsanzahl 2,000
Aktuelle Version 0.1
Letztes Update 2019-04-26
Veröffentlichungsdatum 2019-04-26
Bewertung 4.62/5 Insgesamt 13 Bewertungen
Entwickler Unknown
Zahlungsart free
Erweiterungswebsite https://develomark.com
Unterstützte Sprachen 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"
}