Shopify Changelog Generator

This extension shows a simple changelog of files you changed on your Shopify theme in the console.

Τι είναι το Shopify Changelog Generator;

Το Shopify Changelog Generator είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Bold Commerce, και η κύρια λειτουργία του είναι "This extension shows a simple changelog of files you changed on your Shopify theme in the console.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Shopify Changelog Generator

Λήψη αρχείων επέκτασης Shopify Changelog Generator σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Shopify Changelog Generator generates a changelog showing the theme information and files where changes were made.  This should make it easier to send changelogs to any customers requesting which files were modified.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Shopify Changelog Generator Shopify Changelog Generator
ID ndapgodpammkdiljblbmfepcfaebiegn
Επίσημο URL https://chromewebstore.google.com/detail/shopify-changelog-generat/ndapgodpammkdiljblbmfepcfaebiegn
Περιγραφή This extension shows a simple changelog of files you changed on your Shopify theme in the console.
Μέγεθος Αρχείου 82.93 KB
Αριθμός Εγκαταστάσεων 70
Τρέχουσα Έκδοση 1.1.1
Τελευταία Ενημέρωση 2018-08-27
Ημερομηνία Δημοσίευσης 2018-08-27
Αξιολόγηση 4.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Bold Commerce
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://boldcommerce.com/privacy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Shopify Changelog Generator",
    "description": "This extension shows a simple changelog of files you changed on your Shopify theme in the console.",
    "version": "1.1.1",
    "icons": {
        "16": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_title": "Shopify Changelog Generator",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.myshopify.com\/admin\/themes\/*",
                "https:\/\/*.myshopify.com\/admin\/themes\/*",
                "https:\/\/*.zendesk.com\/*"
            ],
            "js": [
                "frontend.js"
            ],
            "runat": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "clipboardRead",
        "clipboardWrite",
        "storage",
        "unlimitedStorage"
    ],
    "web_accessible_resources": [
        "\/client.js",
        "\/frontend.js",
        "\/zendesk_client.js"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.zendesk.com\/*"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}