AMPInspect

View the AMP version of websites you visit and discover the components they use.

Τι είναι το AMPInspect;

Το AMPInspect είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://ampface.io, και η κύρια λειτουργία του είναι "View the AMP version of websites you visit and discover the components they use.".

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

screenshot

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

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

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

                        This plugin displays a brief overview of websites using AMP (Accelerated Mobile Pages). 

For WordPress websites it will list if the official plugin has been installed (regardless if whether it's activated), and also lists whether the most popular non official AMP plugin has been installed. It display's this information on both AMP and non AMP WordPress URLs. 

For the official AMP plugin it will display the plugin version and mode when you visit an AMP page. 

For any AMP URL (WordPress or not) the popup lists the AMP components active on that page.                    

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

Όνομα AMPInspect AMPInspect
ID igdigflifnjnhooafgglmeefikobalhk
Επίσημο URL https://chromewebstore.google.com/detail/ampinspect/igdigflifnjnhooafgglmeefikobalhk
Περιγραφή View the AMP version of websites you visit and discover the components they use.
Μέγεθος Αρχείου 23.03 KB
Αριθμός Εγκαταστάσεων 58
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2019-06-21
Ημερομηνία Δημοσίευσης 2019-06-20
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής https://ampface.io
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://ampface.io/?amp
Διεύθυνση URL της Σελίδας Βοήθειας https://ampface.io/?amp
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AMPInspect",
    "version": "1.1",
    "manifest_version": 2,
    "description": "View the AMP version of websites you visit and discover the components they use.",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ]
}