Hiro's Quick Links

Handy navigation links for WooCommerce sites

Cos'è Hiro's Quick Links?

Hiro's Quick Links è un'estensione di Chrome sviluppata da Will Brubaker, e la sua funzione principale è "Handy navigation links for WooCommerce sites".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Hiro's Quick Links

Scarica i file di estensione Hiro's Quick Links in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        For WooCommerce shop managers or WooCommerce developers

* Populates a panel with handy WooCommerce navigation links frontend & backend links accessible from one handy place. Go directly to various settings rather than taking multiple clicks.
* Toggle WordPress notices (for screenshots, etc)
* Automatically hides any Yoast SEO columns added in the products page

#### Usage notes:

When first signing in to a WooCommerce site, the links will take a few seconds to several seconds to load (be patient). After the links have been loaded once, they are retained for the life of the browser session.                    

Informazioni di Base sull'Estensione

Nome Hiro's Quick Links Hiro's Quick Links
ID gfkcobfhjfljhoingianjgaedgnncpdd
URL Ufficiale https://chromewebstore.google.com/detail/hiros-quick-links/gfkcobfhjfljhoingianjgaedgnncpdd
Descrizione Handy navigation links for WooCommerce sites
Dimensione del File 94.85 KB
Conteggio Installazioni 79
Versione Corrente 0.7
Ultimo Aggiornamento 2016-06-09
Data di Pubblicazione 2016-06-09
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Will Brubaker
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/WillBrubaker/hiro-quick-links
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hiro's Quick Links",
    "description": "Handy navigation links for WooCommerce sites",
    "version": "0.7",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "panel.html",
        "default_title": "Hiro's Quick Links"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "background"
    ],
    "manifest_version": 2
}