Content Finder

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

Vad är Content Finder?

Content Finder är en Chrome-tillägg utvecklad av White Tower Software LLC, och dess huvudfunktion är "The easiest way to identify the endpoint where the content is coming from.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Content Finder-förlängningens CRX-fil

Ladda ner Content Finder-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                                            

Grundläggande Information om Tillägg

Namn Content Finder Content Finder
ID bbamdlhecgcmakehkkolcdgpanlkjapc
Officiell webbadress https://chromewebstore.google.com/detail/content-finder/bbamdlhecgcmakehkkolcdgpanlkjapc
Beskrivning The easiest way to identify the endpoint where the content is coming from.
Filstorlek 884 KB
Antal Installationer 100
Aktuell Version 1.1
Senast Uppdaterad 2018-03-07
Publiceringsdatum 2018-03-07
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare White Tower Software LLC
E-post [email protected]
Betalningssätt free
Stödda Språk 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\/*"
    ]
}