HubSpot Developer Extension

Must have for HubSpot Developers, adding convenience features to HubSpot

HubSpot Developer Extension क्या है?

HubSpot Developer Extension hubspot-developer-extension द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Must have for HubSpot Developers, adding convenience features to HubSpot"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में HubSpot Developer Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        A Chrome/Chromium extension for HubSpot developers built and maintained by the community (not by HubSpot itself) that adds useful shortcuts to commonly used HubSpot query parameters, resources and tools for making HubSpot Development easier and more enjoyable.

*Buttons for activating commonly used HubSpot Query Parameters such as hsDebug, AMP, footer jQuery, and a cache buster
*Google Page Speed Insights Tester - great to see if moving jquery to the footer has a significant impact
*Quick access shortcuts to the most used areas of the HubSpot Dev Docs
*Optional Dark Theme for the Design Manager(toggle is in develop tab)
*Optional Developer Menu injected into HubSpot Nav(toggle is in develop tab)
*Mac users rejoice! we've solved the dark cursor on dark code editor problem!
*Tab scrollbar hard to grab? we got your back.
*Dev related tips
*More features coming!

If you find a bug or want to request a feature please report it in our GitHub Issues. See our GitHub as well if you're interested in beta testing new versions.

This extension is available in several languages.
Interested in helping translate the extension? We could use your help visit the GitHub! 

https://github.com/TheWebTech/HubSpot-Developer-Extension                    

एक्सटेंशन की मूल जानकारी

नाम HubSpot Developer Extension HubSpot Developer Extension
ID gebemkdecnlgbcanplbgdpcffpdnfdfo
आधिकारिक URL https://chromewebstore.google.com/detail/hubspot-developer-extensi/gebemkdecnlgbcanplbgdpcffpdnfdfo
विवरण Must have for HubSpot Developers, adding convenience features to HubSpot
फ़ाइल का आकार 1.02 MB
स्थापना संख्या 4,719
वर्तमान संस्करण 1.05.10
अंतिम अपडेट 2023-01-23
प्रकाशन तिथि 2019-12-02
रेटिंग 5.00/5 कुल 18 रेटिंग्स
डेवलपर hubspot-developer-extension
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/GonzaloTorreras/HubSpot-Developer-Extension
सहायता पृष्ठ URL https://github.com/GonzaloTorreras/HubSpot-Developer-Extension/issues
गोपनीयता नीति पृष्ठ URL https://github.com/williamspiro/HubSpot-Developer-Extension/wiki/Privacy-Policy
समर्थित भाषाएँ de,en,fr,es,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "version": "1.05.10",
    "default_locale": "en",
    "description": "__MSG_extDesc__",
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "HubSpot Dev Tools",
        "default_icon": {
            "16": "icon-16.png",
            "19": "icon-19.png",
            "38": "icon-38.png",
            "48": "icon-48.png",
            "128": "icon-128.png"
        }
    },
    "icons": {
        "16": "icon-16.png",
        "19": "icon-19.png",
        "38": "icon-38.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "optional_permissions": [
        "https:\/\/app.hubspot.com\/*",
        "https:\/\/app.hubspotqa.com\/*",
        "https:\/\/local.hubspot.com\/*",
        "https:\/\/local.hubspotqa.com\/*"
    ],
    "web_accessible_resources": [
        "mac-text-cursor.svg",
        "mac-text-cursor.png"
    ],
    "content_scripts": [
        {
            "run_at": "document_idle",
            "js": [
                "jquery-3.2.1.min.js",
                "design-manager.js"
            ],
            "css": [
                "hsDarkIde.css"
            ],
            "document_idle": "document_start",
            "matches": [
                "https:\/\/local.hubspot.com\/*",
                "https:\/\/local.hubspotqa.com\/*",
                "https:\/\/app.hubspot.com\/*",
                "https:\/\/app.hubspotqa.com\/*",
                "https:\/\/login.hubspot.com\/*"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "options_page": "options.html",
    "background": {
        "persistent": true,
        "scripts": [
            "hot-reload.js",
            "background.js"
        ]
    },
    "devtools_page": "devtools.html",
    "commands": {
        "bust-cache": {
            "suggested_key": {
                "default": "Ctrl+Shift+1",
                "mac": "Ctrl+Shift+1"
            },
            "description": "Run Cache Buster"
        },
        "hs-debug": {
            "suggested_key": {
                "default": "Ctrl+Shift+2",
                "mac": "Ctrl+Shift+2"
            },
            "description": "toggle ?hsDebug=True in the URL"
        }
    }
}