Search Trends
Gathers trend data for your Google searches
Search Trendsとは何ですか?
Search TrendsはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Gathers trend data for your Google searches」です。
拡張機能のスクリーンショット
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. 拡張機能の基本情報
| 名前 | |
| 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"
} | |