AdWords HotKeys

This extension will add 4 date range keywords to the Google AdWords interface

Cos'è AdWords HotKeys?

AdWords HotKeys è un'estensione di Chrome sviluppata da basbaudoin, e la sua funzione principale è "This extension will add 4 date range keywords to the Google AdWords interface".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione AdWords HotKeys

Scarica i file di estensione AdWords HotKeys in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome AdWords HotKeys AdWords HotKeys
ID dmcejhflhmpagpenaaahecidpigdfgne
URL Ufficiale https://chrome.google.com/webstore/detail/adwords-hotkeys/dmcejhflhmpagpenaaahecidpigdfgne
Descrizione This extension will add 4 date range keywords to the Google AdWords interface
Dimensione del File 15.02 KB
Conteggio Installazioni 26
Versione Corrente 1.1
Ultimo Aggiornamento 2016-11-15
Data di Pubblicazione 2016-11-15
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore basbaudoin
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://bb-projects.nl/adwords-hotkeys/
URL della Pagina della Politica sulla Privacy http://bb-projects.nl/adwords-hotkeys
Lingue Supportate 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"
        }
    }
}