AdWords HotKeys

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

AdWords HotKeys là gì?

AdWords HotKeys là một tiện ích mở rộng Chrome được phát triển bởi basbaudoin, và tính năng chính của nó là "This extension will add 4 date range keywords to the Google AdWords interface".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng AdWords HotKeys

Tải xuống các tệp mở rộng AdWords HotKeys dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên AdWords HotKeys AdWords HotKeys
ID dmcejhflhmpagpenaaahecidpigdfgne
URL Chính Thức https://chrome.google.com/webstore/detail/adwords-hotkeys/dmcejhflhmpagpenaaahecidpigdfgne
Mô tả This extension will add 4 date range keywords to the Google AdWords interface
Kích Thước Tệp 15.02 KB
Số Lần Cài Đặt 26
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2016-11-15
Ngày Phát Hành 2016-11-15
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển basbaudoin
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://bb-projects.nl/adwords-hotkeys/
URL Trang Chính Sách Bảo Mật http://bb-projects.nl/adwords-hotkeys
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}