AdWords HotKeys

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

什麼是AdWords HotKeys?

AdWords HotKeys是由basbaudoin開發的Chrome擴展程式,該擴展的主要功能是“This extension will add 4 date range keywords to the Google AdWords interface”。

擴展截圖

screenshot

下載AdWords HotKeys擴展crx文件

下載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
官方網址 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"
        }
    }
}