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」です。
拡張機能のスクリーンショット
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.
拡張機能の基本情報
名前 | |
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" ] } |