AdWords HotKeys
This extension will add 4 date range keywords to the Google AdWords interface
Was ist AdWords HotKeys?
AdWords HotKeys ist eine Chrome-Erweiterung, die von basbaudoin entwickelt wurde, und ihr Hauptmerkmal ist "This extension will add 4 date range keywords to the Google AdWords interface".
Erweiterungsscreenshots
AdWords HotKeys-Erweiterungs-CRX-Datei herunterladen
Laden Sie AdWords HotKeys-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
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | dmcejhflhmpagpenaaahecidpigdfgne |
Offizielle URL | https://chrome.google.com/webstore/detail/adwords-hotkeys/dmcejhflhmpagpenaaahecidpigdfgne |
Beschreibung | This extension will add 4 date range keywords to the Google AdWords interface |
Dateigröße | 15.02 KB |
Installationsanzahl | 26 |
Aktuelle Version | 1.1 |
Letztes Update | 2016-11-15 |
Veröffentlichungsdatum | 2016-11-15 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | basbaudoin |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | http://bb-projects.nl/adwords-hotkeys/ |
URL der Datenschutzrichtlinien-Seite | http://bb-projects.nl/adwords-hotkeys |
Unterstützte Sprachen | 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" } } } |