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
Eメール [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\/*"
    ]
}