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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}