PizzaFinder

Pizza Finder extension helps you to find a pizza in the menu page on any food delivery website

什么是PizzaFinder?

PizzaFinder是由http://thewebminer.com开发的Chrome扩展程序,该扩展的主要功能是“Pizza Finder extension helps you to find a pizza in the menu page on any food delivery website”。

扩展截图

screenshot

下载PizzaFinder扩展crx文件

下载PizzaFinder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Pizza Finder helps you to find appropriate pizza on a page with a lot of pizza with many variations. Pizza Finder highlights the recommended type of pizza based on your preferred ingredients. 

Just add preferred ingredients and you will see HIGHLIGHTED best pizza for you.                    

扩展基本信息

名称 PizzaFinder PizzaFinder
ID cplmmhjnpgajpohbjenpjgakhikembnp
官方URL https://chrome.google.com/webstore/detail/pizzafinder/cplmmhjnpgajpohbjenpjgakhikembnp
简介 Pizza Finder extension helps you to find a pizza in the menu page on any food delivery website
文件大小 150 KB
安装次数 33
当前版本 1.2
更新时间 2019-03-08
上架时间 2019-03-08
评分 4.40/5 共5次评分
开发者 http://thewebminer.com
付费类型 free
扩展官网 http://thewebminer.com/contact
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PizzaFinder",
    "description": "Pizza Finder extension helps you to find a pizza in the menu page on any food delivery website",
    "version": "1.2",
    "icons": {
        "16": "logo_16.png",
        "48": "logo_48.png",
        "128": "logo_128.png"
    },
    "browser_action": {
        "default_icon": "logo_16.png",
        "default_popup": "main.htm"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js",
                "jquery.js",
                "bootstrap.min.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}