Find+

Designed By wuaq.cn

Find+ là gì?

Find+ là một tiện ích mở rộng Chrome được phát triển bởi wuaqgg, và tính năng chính của nó là "Designed By wuaq.cn".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Find+

Tải xuống các tệp mở rộng Find+ dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        利用强大的正则表达式来对页面进行搜索,在页面信息较多时快速找到自己需要的。原作者Chrome Regex Search-rshen                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Find+ Find+
ID kbhhfmpihkhcjfbhbbmfppjmgcpbknpd
URL Chính Thức https://chromewebstore.google.com/detail/find+/kbhhfmpihkhcjfbhbbmfppjmgcpbknpd
Mô tả Designed By wuaq.cn
Kích Thước Tệp 281 KB
Số Lần Cài Đặt 45
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2018-09-16
Ngày Phát Hành 2018-09-16
Nhà Phát Triển wuaqgg
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}