Finding patterns
Look for patterns inside HTML, JS, CSS and AJAX code
Что такое Finding patterns?
Finding patterns - это расширение Chrome, разработанное carlosV2, и его основная функция - "Look for patterns inside HTML, JS, CSS and AJAX code".
Снимки экрана расширения
Скачать файл CRX расширения Finding patterns
Скачайте файлы расширений Finding patterns в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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", "*:\/\/*\/*" ] } |