Custom DOM
Use predicates to match DOM nodes and pass them to custom functions.
Custom DOM क्या है?
Custom DOM Whisno द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use predicates to match DOM nodes and pass them to custom functions."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Custom DOM एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension traverses the DOM (both static and dynamically generated). Each node for which the predicate function returns true will be passed to the handling function. You can configure the extension through the extensions page (chrome://extensions/)
एक्सटेंशन की मूल जानकारी
नाम | Custom DOM |
ID | klmbmehkdcmkbcglhnfimklbepjogppo |
आधिकारिक URL | https://chromewebstore.google.com/detail/custom-dom/klmbmehkdcmkbcglhnfimklbepjogppo |
विवरण | Use predicates to match DOM nodes and pass them to custom functions. |
फ़ाइल का आकार | 309 KB |
स्थापना संख्या | 27 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2015-01-17 |
प्रकाशन तिथि | 2015-01-17 |
डेवलपर | Whisno |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/Whisno/Chrome-Custom-DOM |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Custom DOM", "version": "1.0", "description": "Use predicates to match DOM nodes and pass them to custom functions.", "icons": { "128": "assets\/icon-128.png", "48": "assets\/icon-48.png", "24": "assets\/icon-24.png" }, "homepage_url": "https:\/\/github.com\/Whisno\/Chrome-Custom-DOM", "content_scripts": [ { "js": [ "main.js" ], "matches": [ " |