Shopify Edit Button

Add a button to edit the displayed shopify blog post and pages

Co je Shopify Edit Button?

Shopify Edit Button je rozšíření Chrome vyvinuté Andrea Dragotta, a jeho hlavní funkcí je „Add a button to edit the displayed shopify blog post and pages“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Shopify Edit Button

Stáhněte si soubory rozšíření Shopify Edit Button ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This extension covers a missing feature in shopify. You have an "Edit" button for products, but not for blog posts or pages!
This extension will add a button that, once clicked, will redirect you to the backoffice and let you edit your post on the fly.

- v. 1.0.2: Added edit buttons for products
- v. 1.0.1: Added edit buttons also for other types of shopify pages (collections/blogs) and a button to the admin site on the homepage


(screenshots made available thanks to the concession of modaedesign.com)                    

Základní Informace o Rozšíření

Název Shopify Edit Button Shopify Edit Button
ID jjbnjnahlifmjniecpefeapddjedbhff
Oficiální URL https://chromewebstore.google.com/detail/shopify-edit-button/jjbnjnahlifmjniecpefeapddjedbhff
Popis Add a button to edit the displayed shopify blog post and pages
Velikost souboru 34.67 KB
Počet instalací 104
Aktuální Verze 1.0.2
Poslední Aktualizace 2022-10-15
Datum Vydání 2022-06-22
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Andrea Dragotta
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Shopify Edit Button",
    "version": "1.0.2",
    "description": "Add a button to edit the displayed shopify blog post and pages",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "libraries\/bgscript.js",
                "injected.js"
            ],
            "css": [
                "injected.css"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "shopify-btn.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "icons\/logo16.png",
            "32": "icons\/logo32.png",
            "48": "icons\/logo48.png"
        }
    },
    "icons": {
        "16": "icons\/logo16.png",
        "32": "icons\/logo32.png",
        "48": "icons\/logo48.png"
    },
    "options_page": "options.html",
    "manifest_version": 3
}