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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    }
}