AdWords HotKeys
This extension will add 4 date range keywords to the Google AdWords interface
Wat is AdWords HotKeys?
AdWords HotKeys is een Chrome-extensie ontwikkeld door basbaudoin, en de belangrijkste functie is "This extension will add 4 date range keywords to the Google AdWords interface".
Extensie Screenshots
Download het CRX-bestand van de extensie AdWords HotKeys
Download AdWords HotKeys-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | dmcejhflhmpagpenaaahecidpigdfgne |
| Officiële URL | https://chrome.google.com/webstore/detail/adwords-hotkeys/dmcejhflhmpagpenaaahecidpigdfgne |
| Beschrijving | This extension will add 4 date range keywords to the Google AdWords interface |
| Bestandsgrootte | 15.02 KB |
| Aantal Installaties | 26 |
| Huidige Versie | 1.1 |
| Laatst Bijgewerkt | 2016-11-15 |
| Publicatiedatum | 2016-11-15 |
| Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | basbaudoin |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | http://bb-projects.nl/adwords-hotkeys/ |
| URL van de Privacybeleid Pagina | http://bb-projects.nl/adwords-hotkeys |
| Ondersteunde Talen | 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"
}
}
} | |