AdWords HotKeys
This extension will add 4 date range keywords to the Google AdWords interface
AdWords HotKeys क्या है?
AdWords HotKeys basbaudoin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will add 4 date range keywords to the Google AdWords interface"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में AdWords HotKeys एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 एक्सटेंशन की मूल जानकारी
| नाम | |
| 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"
}
}
} | |