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"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| 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"
}
}
} | |