Search Trends
Gathers trend data for your Google searches
Qu'est-ce que Search Trends ?
Search Trends est une extension Chrome développée par Unknown, et sa fonction principale est "Gathers trend data for your Google searches".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Search Trends
Téléchargez les fichiers d'extension Search Trends au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Search Trends |
ID | jofipiopohkiomefophlddhgflnmjclo |
URL Officiel | https://chromewebstore.google.com/detail/search-trends/jofipiopohkiomefophlddhgflnmjclo |
Description | Gathers trend data for your Google searches |
Taille du Fichier | 1.27 MB |
Nombre d'Installations | 2,000 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2019-04-26 |
Date de Publication | 2019-04-26 |
Évaluation | 4.62/5 Total 13 Évaluations |
Développeur | Unknown |
Type de Paiement | free |
Site Web de l'Extension | https://develomark.com |
Langues Prises en Charge | 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" } |