Domain visualizer

Monitors and visualize domains.

Τι είναι το Domain visualizer;

Το Domain visualizer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Maikel Bollemeijer, και η κύρια λειτουργία του είναι "Monitors and visualize domains.".

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

screenshot
screenshot
screenshot

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

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

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

                        Domain visualizer monitors the current domain for you and tries to match it to one of the stored domains.
If the domain matches a stored one, html is prepended into the body of the DOM.

This extension is very handy for web developers who often get confused if the website displaying in front of them is a local one or the test/production website of your client.

The html prepended into the dom can be configured in the add domain modal, there you can either configure the pre selected configuration options or you can insert your own custom html.

features:
- Domain monitoring
- Custom html
- Import/Export
- Domain root discovery
- Popup with listed domains for quick access to the monitored domains.
- Domain sync by google account sign on

v1.2.2

BugFixes:

  - Edit development settings now shows previous chosen settings.
  - Empty groups not displaying in the dropdown.
  - Prevented that the development settings-key would be displayed in the dropdown under the 'No group' group 

v1.2.1

BugFixes:
  - When not assigning a group to the domain, it does not appear in the popup

v1.2

Features:
- Added local development settings, using a regex to match localhosts.
- Allow grouping of domains.
- Change the dropdown menu so you can browse through groups and going to the given domain by clicking on a item in the group.
- Add a link to go to the option page. from the dopdown

Older updates:
 - v1.0: initial release.
 - v1.1: The coloured diff does not wait for the dom ready event anymore. 
 - v1.1.1: bug fix that was introduced in v1.1, that the plugin wouldn`t load anymore cause of missing images.                    

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

Όνομα Domain visualizer Domain visualizer
ID ocpeldmmenlcanjkjbmgdbckgilimkme
Επίσημο URL https://chrome.google.com/webstore/detail/domain-visualizer/ocpeldmmenlcanjkjbmgdbckgilimkme
Περιγραφή Monitors and visualize domains.
Μέγεθος Αρχείου 368 KB
Αριθμός Εγκαταστάσεων 124
Τρέχουσα Έκδοση 1.2.2
Τελευταία Ενημέρωση 2015-08-03
Ημερομηνία Δημοσίευσης 2015-08-03
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Maikel Bollemeijer
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/mbollemeijer/Domain-visualizer
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/mbollemeijer/Domain-visualizer/issues
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Domain visualizer",
    "version": "1.2.2",
    "description": "Monitors and visualize domains.",
    "browser_action": {
        "default_icon": "img\/icon_512x512.png",
        "default_popup": "html\/popup.html"
    },
    "options_ui": {
        "page": "html\/options.html",
        "open_in_tab": true
    },
    "icons": {
        "96": "img\/icon_96x96.png",
        "128": "img\/icon_128x128.png",
        "112": "img\/icon_112x112.png",
        "512": "img\/icon_512x512.png"
    },
    "manifest_version": 2,
    "permissions": [
        "storage",
        "tabs"
    ],
    "web_accessible_resources": [],
    "content_scripts": [
        {
            "js": [
                "js\/jquery.min.js",
                "js\/content_script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ]
}