Finding patterns
Look for patterns inside HTML, JS, CSS and AJAX code
Finding patterns क्या है?
Finding patterns carlosV2 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Look for patterns inside HTML, JS, CSS and AJAX code"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Finding patterns एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension aims to help you to find bugs on your webpage. Also, it can show you any text you need to know. It is useful when your webpage replaces tags such #LIST_OF_PRODUCTS#. There times that tags are hidden (for example in a link title, JS, CSS or AJAX code). With Finding patterns you will find quickly all of them. You can use your own regular expressions so you can find any pattern you need.
एक्सटेंशन की मूल जानकारी
नाम | Finding patterns |
ID | fikfnienebmgobclladdionkabigeico |
आधिकारिक URL | https://chromewebstore.google.com/detail/finding-patterns/fikfnienebmgobclladdionkabigeico |
विवरण | Look for patterns inside HTML, JS, CSS and AJAX code |
फ़ाइल का आकार | 171 KB |
स्थापना संख्या | 637 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2013-02-12 |
प्रकाशन तिथि | 2013-02-12 |
रेटिंग | 3.20/5 कुल 5 रेटिंग्स |
डेवलपर | carlosV2 |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Finding patterns", "version": "1.1", "manifest_version": 2, "description": "Look for patterns inside HTML, JS, CSS and AJAX code", "icons": { "16": "icons\/icon16.png", "19": "icons\/icon19.png", "42": "icons\/icon42.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "constants.js", "background.js" ] }, "page_action": { "default_icon": "icons\/icon19.png", "default_title": "Checking...", "default_popup": "popup.html" }, "web_accessible_resources": [ "ajaxinspector.js" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "options_page": "options.html", "permissions": [ "tabs", "*:\/\/*\/*" ] } |