Content Finder

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

ما هو Content Finder؟

Content Finder هو إضافة Chrome تم تطويرها بواسطة White Tower Software LLC، والميزة الرئيسية لها هي "The easiest way to identify the endpoint where the content is coming from.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Content Finder

قم بتنزيل ملفات الامتداد Content Finder بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                                            

معلومات أساسية عن التمديد

الاسم 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\/*"
    ]
}