Content Finder

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

什么是Content Finder?

Content Finder是由White Tower Software LLC开发的Chrome扩展程序,该扩展的主要功能是“The easiest way to identify the endpoint where the content is coming from.”。

扩展截图

screenshot
screenshot

下载Content Finder扩展crx文件

下载Content Finder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                                            

扩展基本信息

名称 Content Finder Content Finder
ID bbamdlhecgcmakehkkolcdgpanlkjapc
官方URL https://chromewebstore.google.com/detail/content-finder/bbamdlhecgcmakehkkolcdgpanlkjapc
简介 The easiest way to identify the endpoint where the content is coming from.
文件大小 884 KB
安装次数 100
当前版本 1.1
更新时间 2018-03-07
上架时间 2018-03-07
评分 5.00/5 共1次评分
开发者 White Tower Software LLC
电子邮箱 [email protected]
付费类型 free
支持的语言 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\/*"
    ]
}