Measuring Box

On the fly measuring box used by click and drag action. It can be used on any website to find out what size an element or image is

Τι είναι το Measuring Box;

Το Measuring Box είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jonny_spry, και η κύρια λειτουργία του είναι "On the fly measuring box used by click and drag action. It can be used on any website to find out what size an element or image is".

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

screenshot
screenshot
screenshot

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

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

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

                        Use the mouse to click and drag over an area of the webpage to measure the content underneath.
This also tells you what the aspect ratio is.                    

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

Όνομα Measuring Box Measuring Box
ID jciegdpdoijocnobdcmdhbagjncapdfh
Επίσημο URL https://chromewebstore.google.com/detail/measuring-box/jciegdpdoijocnobdcmdhbagjncapdfh
Περιγραφή On the fly measuring box used by click and drag action. It can be used on any website to find out what size an element or image is
Μέγεθος Αρχείου 86.55 KB
Αριθμός Εγκαταστάσεων 115
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2016-08-11
Ημερομηνία Δημοσίευσης 2016-08-11
Αξιολόγηση 2.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής jonny_spry
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Measuring Box",
    "description": "On the fly measuring box used by click and drag action. It can be used on any website to find out what size an element or image is",
    "version": "1.0",
    "browser_action": {
        "default_icon": "box.png",
        "default_title": "icon"
    },
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}