Pesticide for Chrome

This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.

Τι είναι το Pesticide for Chrome;

Το Pesticide for Chrome είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον londonappbrewery, και η κύρια λειτουργία του είναι "This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.".

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

screenshot

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

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

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

                        This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.

This is a forked copy of Pesticide created originally by Adam Morse:
https://github.com/mrmrs/pesticide

This copy of Pesticide is created for students on the Complete Web Development Bootcamp by Dr. Angela Yu.
https://www.udemy.com/course/the-complete-web-development-bootcamp/                    

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

Όνομα Pesticide for Chrome Pesticide for Chrome
ID bakpbgckdnepkmkeaiomhmfcnejndkbi
Επίσημο URL https://chromewebstore.google.com/detail/pesticide-for-chrome/bakpbgckdnepkmkeaiomhmfcnejndkbi
Περιγραφή This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.
Μέγεθος Αρχείου 24.81 KB
Αριθμός Εγκαταστάσεων 320,694
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2021-11-09
Ημερομηνία Δημοσίευσης 2021-11-08
Αξιολόγηση 4.68/5 Συνολικά 62 Αξιολογήσεις
Προγραμματιστής londonappbrewery
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.udemy.com/course/the-complete-web-development-bootcamp/
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pesticide for Chrome",
    "short_name": "Pesticide",
    "description": "This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page.",
    "version": "1.1",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "pesticide-injector.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Toggle Pesticide",
        "default_icon": {
            "19": "images\/toolbar-chrome.png",
            "38": "images\/[email protected]"
        }
    },
    "icons": {
        "128": "icon_128.png",
        "16": "icon_16.png",
        "48": "icon_48.png"
    },
    "web_accessible_resources": [
        "pesticide.min.css",
        "pesticide.js"
    ]
}