Finding patterns
Look for patterns inside HTML, JS, CSS and AJAX code
Qu'est-ce que Finding patterns ?
Finding patterns est une extension Chrome développée par carlosV2, et sa fonction principale est "Look for patterns inside HTML, JS, CSS and AJAX code".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Finding patterns
Téléchargez les fichiers d'extension Finding patterns au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Finding patterns |
ID | fikfnienebmgobclladdionkabigeico |
URL Officiel | https://chromewebstore.google.com/detail/finding-patterns/fikfnienebmgobclladdionkabigeico |
Description | Look for patterns inside HTML, JS, CSS and AJAX code |
Taille du Fichier | 171 KB |
Nombre d'Installations | 637 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2013-02-12 |
Date de Publication | 2013-02-12 |
Évaluation | 3.20/5 Total 5 Évaluations |
Développeur | carlosV2 |
Type de Paiement | free |
Langues Prises en Charge | 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", "*:\/\/*\/*" ] } |