Regex Search
This is a chrome extension that allows you to search the text of a page using regular expressions. Please note that because of the…
什麼是Regex Search?
Regex Search是由gsingh93開發的Chrome擴展程式,該擴展的主要功能是“This is a chrome extension that allows you to search the text of a page using regular expressions. Please note that because of the…”。
擴展截圖
下載Regex Search擴展crx文件
下載Regex Search擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This is a chrome extension that allows you to search the text of a page using regular expressions. Please note that because of the way web pages are written, it is very difficult to make this extension work on 100% of pages. If you have any problems, please report them on the Github issues page: https://github.com/gsingh93/regex-search/issues. Please DO NOT try to test this extension on any URL beginning with chrome.google.com/webstore. It will NOT work. See this question for details: http://stackoverflow.com/questions/11613371/chrome-extension-content-script-on-https-chrome-google-com-webstore
擴展基本資訊
名稱 | Regex Search |
ID | bcdabfmndggphffkchfdcekcokmbnkjl |
官方網址 | https://chromewebstore.google.com/detail/regex-search/bcdabfmndggphffkchfdcekcokmbnkjl |
簡介 | This is a chrome extension that allows you to search the text of a page using regular expressions. Please note that because of the… |
檔案大小 | 53.24 KB |
安裝次數 | 6,475 |
目前版本 | 1.8 |
更新時間 | 2019-03-04 |
上架時間 | 2019-03-03 |
評分 | 3.06/5 共 178 次評分 |
開發者 | gsingh93 |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/gsingh93/regex-search |
說明頁面URL | https://github.com/gsingh93/regex-search/issues |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Regex Search", "version": "1.8", "permissions": [ "tabs", "http:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "css": [ "content\/content.css" ], "js": [ "content\/jquery.min.js", "content\/content.js" ] } ], "background": { "scripts": [ "background\/background.js" ] }, "options_page": "options\/options.html", "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_popup": "popup\/popup.html" }, "commands": { "next": { "suggested_key": { "default": "Alt+Shift+N" }, "description": "Go to the next search result" }, "prev": { "suggested_key": { "default": "Alt+Shift+P" }, "description": "Go to the previous search result" }, "_execute_browser_action": { "suggested_key": { "default": "Alt+Shift+F" } } }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } |