Recipe Filter
Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.
什麼是Recipe Filter?
Recipe Filter是由Seansoft開發的Chrome擴展程式,該擴展的主要功能是“Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.”。
擴展截圖
下載Recipe Filter擴展crx文件
下載Recipe Filter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension will detect recipes on any page you visit and will highlight them at the top of the page. Easy! No more hunting for the actual recipe when you visit a long-winded food blog! You can turn it off for specific sites if you find it's not needed and edit the blacklist under "Options" when you right-click the green Recipe Filter icon in your toolbar. This is an open source project: https://github.com/sean-public/RecipeFilter
擴展基本資訊
名稱 | Recipe Filter |
ID | ahlcdjbkdaegmljnnncfnhiioiadakae |
官方網址 | https://chromewebstore.google.com/detail/recipe-filter/ahlcdjbkdaegmljnnncfnhiioiadakae |
簡介 | Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup. |
檔案大小 | 12.64 KB |
安裝次數 | 56,805 |
目前版本 | 0.3 |
更新時間 | 2020-06-13 |
上架時間 | 2020-06-13 |
評分 | 4.84/5 共 192 次評分 |
開發者 | Seansoft |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/sean-public/RecipeFilter |
說明頁面URL | https://github.com/sean-public/RecipeFilter |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Recipe Filter", "short_name": "Recipe Filter", "version": "0.3", "description": "Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.", "icons": { "128": "img\/icon-128.png" }, "permissions": [ "storage" ], "options_page": "html\/options.html", "browser_action": { "default_title": "Recipe Filter", "default_icon": "img\/icon-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "css\/recipe_filter.css" ], "js": [ "js\/main.js" ] } ] } |