Finding patterns
Look for patterns inside HTML, JS, CSS and AJAX code
什麼是Finding patterns?
Finding patterns是由carlosV2開發的Chrome擴展程式,該擴展的主要功能是“Look for patterns inside HTML, JS, CSS and AJAX code”。
擴展截圖
下載Finding patterns擴展crx文件
下載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 |
官方網址 | 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", "*:\/\/*\/*" ] } |