Content Finder

The easiest way to identify the endpoint where the content is coming from.

Content Finder là gì?

Content Finder là một tiện ích mở rộng Chrome được phát triển bởi White Tower Software LLC, và tính năng chính của nó là "The easiest way to identify the endpoint where the content is coming from.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Content Finder 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

                                            

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

Tên Content Finder Content Finder
ID bbamdlhecgcmakehkkolcdgpanlkjapc
URL Chính Thức https://chromewebstore.google.com/detail/content-finder/bbamdlhecgcmakehkkolcdgpanlkjapc
Mô tả The easiest way to identify the endpoint where the content is coming from.
Kích Thước Tệp 884 KB
Số Lần Cài Đặt 100
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2018-03-07
Ngày Phát Hành 2018-03-07
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển White Tower Software LLC
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Content Finder",
    "description": "The easiest way to identify the endpoint where the content is coming from.",
    "version": "1.1",
    "author": "White Tower Software LLC",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Content Finder"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "contentscript.js"
            ],
            "css": [
                "main.css",
                "fonts\/css\/fontawesome-all.min.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "inject.js",
        "fonts\/webfonts\/*"
    ]
}