Search Trends
Gathers trend data for your Google searches
Vad är Search Trends?
Search Trends är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Gathers trend data for your Google searches".
Tilläggsskärmbilder
Ladda ner Search Trends-förlängningens CRX-fil
Ladda ner Search Trends-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Search Trends |
ID | jofipiopohkiomefophlddhgflnmjclo |
Officiell webbadress | https://chromewebstore.google.com/detail/search-trends/jofipiopohkiomefophlddhgflnmjclo |
Beskrivning | Gathers trend data for your Google searches |
Filstorlek | 1.27 MB |
Antal Installationer | 2,000 |
Aktuell Version | 0.1 |
Senast Uppdaterad | 2019-04-26 |
Publiceringsdatum | 2019-04-26 |
Betyg | 4.62/5 Totalt 13 Betyg |
Utvecklare | Unknown |
Betalningssätt | free |
Tilläggswebbplats | https://develomark.com |
Stödda Språk | 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" } |