Content Finder

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

Apa itu Content Finder?

Content Finder adalah ekstensi Chrome yang dikembangkan oleh White Tower Software LLC, dan fitur utamanya adalah "The easiest way to identify the endpoint where the content is coming from.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Content Finder

Unduh file ekstensi Content Finder dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                                            

Informasi Dasar Ekstensi

Nama Content Finder Content Finder
ID bbamdlhecgcmakehkkolcdgpanlkjapc
URL Resmi https://chromewebstore.google.com/detail/content-finder/bbamdlhecgcmakehkkolcdgpanlkjapc
Deskripsi The easiest way to identify the endpoint where the content is coming from.
Ukuran File 884 KB
Jumlah Instalasi 100
Versi Saat Ini 1.1
Terakhir Diperbarui 2018-03-07
Tanggal Publikasi 2018-03-07
Penilaian 5.00/5 Total 1 Penilaian
Pengembang White Tower Software LLC
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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\/*"
    ]
}