Find+
Designed By wuaq.cn
Find+とは何ですか?
Find+はwuaqggによって開発されたChromeの拡張機能で、その主な機能は「Designed By wuaq.cn」です。
拡張機能のスクリーンショット
Find+拡張機能のCRXファイルをダウンロード
Find+拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
利用强大的正则表达式来对页面进行搜索,在页面信息较多时快速找到自己需要的。原作者Chrome Regex Search-rshen 拡張機能の基本情報
| 名前 | |
| ID | kbhhfmpihkhcjfbhbbmfppjmgcpbknpd |
| 公式URL | https://chromewebstore.google.com/detail/find+/kbhhfmpihkhcjfbhbbmfppjmgcpbknpd |
| 説明 | Designed By wuaq.cn |
| ファイルサイズ | 281 KB |
| インストール数 | 45 |
| 現在のバージョン | 1.0.1 |
| 最終更新日 | 2018-09-16 |
| 公開日 | 2018-09-16 |
| 開発者 | wuaqgg |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en,zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Find+",
"version": "1.0.1",
"author": "wuaq.cn",
"default_locale": "zh_CN",
"description": "__MSG_description__",
"icons": {
"16": "icons\/icons_16.png",
"24": "icons\/icons_24.png",
"32": "icons\/icons_32.png",
"48": "icons\/icons_48.png",
"64": "icons\/icons_64.png",
"72": "icons\/icons_72.png",
"96": "icons\/icons_96.png",
"128": "icons\/icons_128.png",
"256": "icons\/icons_256.png"
},
"browser_action": {
"default_icon": {
"16": "icons\/icons_16.png",
"24": "icons\/icons_24.png",
"32": "icons\/icons_32.png",
"48": "icons\/icons_48.png",
"64": "icons\/icons_64.png",
"72": "icons\/icons_72.png",
"96": "icons\/icons_96.png",
"128": "icons\/icons_128.png",
"256": "icons\/icons_256.png"
},
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"storage"
],
"background": {
"scripts": [
"js\/background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"file:\/\/*\/*"
],
"js": [
"js\/content.js"
]
}
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+Shift+F",
"mac": "Command+Shift+F",
"chromeos": "Ctrl+Shift+F",
"linux": "Ctrl+Shift+F"
}
}
},
"options_page": "options.html",
"manifest_version": 2
} | |