AdWords HotKeys
This extension will add 4 date range keywords to the Google AdWords interface
AdWords HotKeysとは何ですか?
AdWords HotKeysはbasbaudoinによって開発されたChromeの拡張機能で、その主な機能は「This extension will add 4 date range keywords to the Google AdWords interface」です。
拡張機能のスクリーンショット
AdWords HotKeys拡張機能のCRXファイルをダウンロード
AdWords HotKeys拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Add 4 date range hotkeys for AdWords Default keys: Ctrl + Shift + Y = This year Ctrl + Shift + 3 = 30 days Ctrl + Shift + 1 = Today Ctrl + Shift + 4 = This month Can be changed in extension menu
拡張機能の基本情報
名前 | |
ID | dmcejhflhmpagpenaaahecidpigdfgne |
公式URL | https://chrome.google.com/webstore/detail/adwords-hotkeys/dmcejhflhmpagpenaaahecidpigdfgne |
説明 | This extension will add 4 date range keywords to the Google AdWords interface |
ファイルサイズ | 15.02 KB |
インストール数 | 26 |
現在のバージョン | 1.1 |
最終更新日 | 2016-11-15 |
公開日 | 2016-11-15 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | basbaudoin |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | http://bb-projects.nl/adwords-hotkeys/ |
プライバシーポリシーページのURL | http://bb-projects.nl/adwords-hotkeys |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AdWords HotKeys", "description": "This extension will add 4 date range keywords to the Google AdWords interface", "version": "1.1", "manifest_version": 2, "permissions": [ "https:\/\/adwords.google.com\/*" ], "background": { "scripts": [ "content.js" ], "persistent": true }, "browser_action": { "default_icon": "icon.png", "default_popup": "instructions.html" }, "icons": { "32": "icon32.png", "48": "icon48.png" }, "commands": { "thisyear": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" }, "description": "From Jan 1st 2016" }, "30days": { "suggested_key": { "default": "Ctrl+Shift+3", "mac": "Command+Shift+3" }, "description": "30 days" }, "today": { "suggested_key": { "default": "Ctrl+Shift+1", "mac": "Command+Shift+1" }, "description": "Today" }, "thismonth": { "suggested_key": { "default": "Ctrl+Shift+4", "mac": "Command+Shift+4" }, "description": "This month" } } } |