AdWords HotKeys

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

Что такое AdWords HotKeys?

AdWords HotKeys - это расширение Chrome, разработанное basbaudoin, и его основная функция - "This extension will add 4 date range keywords to the Google AdWords interface".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения AdWords HotKeys

Скачайте файлы расширений 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                    

Основная информация о расширении

Название AdWords HotKeys AdWords HotKeys
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
Электронная почта [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"
        }
    }
}