Widget Finder

Find Appwiki widgets on page

What is Widget Finder?

Widget Finder is a Chrome extension developed by Berekad, and its main feature is "Find Appwiki widgets on page".

Extension Screenshots

screenshot
screenshot

Download Widget Finder Extension CRX File

Download Widget 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

                        Search and find Appwiki widgets on any page
Find out what widget version the web page is using 

-- 
Refresh current page after installing extension                    

Extension Basic Information

Name Widget Finder Widget Finder
ID aehpmlfdbpnbjnbkekfbffbnpepnglmh
Official URL https://chromewebstore.google.com/detail/widget-finder/aehpmlfdbpnbjnbkekfbffbnpepnglmh
Description Find Appwiki widgets on page
File Size 29.36 KB
Installation Count 52
Current Version 1.0.0
Last Updated 2021-07-25
Publish Date 2021-07-25
Developer Berekad
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Widget Finder",
    "version": "1.0.0",
    "description": "Find Appwiki widgets on page",
    "icons": {
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ]
}