Looksee

Add borders or shaders to your webpage on the fly. No need to write debug markup to fix layout components.

Qu'est-ce que Looksee ?

Looksee est une extension Chrome développée par Cullan Luther, et sa fonction principale est "Add borders or shaders to your webpage on the fly. No need to write debug markup to fix layout components.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Looksee

Téléchargez les fichiers d'extension Looksee au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This extension provides quick borders or shaders to any element on the page. The text field uses jQuery's anything selector or "sizzle selector library" to easily traverse the dom. Works with your local server. Looksee is built to not affect your layout in anyway. If it does please contact me via the support link below.

Examples:

- Typing div into the input field will add a border to every div on the active tab
- Typing * will add border to everything in the html document
- Typing p, h3, div > span will add a border to all p tags, h3 tags, and spans inside of divs

Support:

I would like to make this extension great so please let me know if you find a bug by heading over to the github page https://github.com/Blumed/looksee/issues

* After the first time you install this extension be sure to reload the desired page first, or just open up a new page and go to town *                    

Informations de Base sur l'Extension

Nom Looksee Looksee
ID mbfdhnjobheppodaolenppfegicnhmhp
URL Officiel https://chromewebstore.google.com/detail/looksee/mbfdhnjobheppodaolenppfegicnhmhp
Description Add borders or shaders to your webpage on the fly. No need to write debug markup to fix layout components.
Taille du Fichier 45.51 KB
Nombre d'Installations 588
Version Actuelle 1.5.5
Dernière Mise à Jour 2021-11-11
Date de Publication 2018-01-31
Évaluation 5.00/5 Total 3 Évaluations
Développeur Cullan Luther
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://cullanluther.com
URL de la Page d'Aide https://github.com/Blumed/looksee/support
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Looksee",
    "description": "Add borders or shaders to your webpage on the fly. No need to write debug markup to fix layout components.",
    "default_locale": "en",
    "version": "1.5.5",
    "offline_enabled": true,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "tabs",
        "",
        "storage",
        "*:\/\/localhost\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "assets\/css\/main.css"
            ],
            "js": [
                "assets\/js\/vendor\/jquery-2.2.3.min.js",
                "assets\/js\/contentScript.js",
                "assets\/js\/outliner.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "assets\/js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "assets\/images\/icon128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "assets\/images\/icon16.png",
        "48": "assets\/images\/icon48.png",
        "128": "assets\/images\/icon128.png"
    }
}