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