Content Finder

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

What is Content Finder?

Content Finder is a Chrome extension developed by White Tower Software LLC, and its main feature is "The easiest way to identify the endpoint where the content is coming from.".

Extension Screenshots

screenshot
screenshot

Download Content Finder Extension CRX File

Download Content Finder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                                            

Extension Basic Information

Name Content Finder Content Finder
ID bbamdlhecgcmakehkkolcdgpanlkjapc
Official URL https://chromewebstore.google.com/detail/content-finder/bbamdlhecgcmakehkkolcdgpanlkjapc
Description The easiest way to identify the endpoint where the content is coming from.
File Size 884 KB
Installation Count 100
Current Version 1.1
Last Updated 2018-03-07
Publish Date 2018-03-07
Rating 5.00/5 Total 1 Ratings
Developer White Tower Software LLC
Email [email protected]
Payment Type free
Supported Languages 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\/*"
    ]
}