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 londonappbrewery द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension inserts the Pesticide CSS into the current page, outlining each element to better see placement on the page."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Pesticide for 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 |
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" ] } |