Video Reviews For Buying Online
While checking an online store this plugin connects you with relevant review videos that will help you make a good decision
什麼是Video Reviews For Buying Online?
Video Reviews For Buying Online是由tiagorbf開發的Chrome擴展程式,該擴展的主要功能是“While checking an online store this plugin connects you with relevant review videos that will help you make a good decision”。
擴展截圖
下載Video Reviews For Buying Online擴展crx文件
下載Video Reviews For Buying Online擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This is a simple yet very useful chrome plugin for people that frequently buy online. Every time you open a product page in one of the supported online stores it links the product title with reviews on youtube and displays a youtube button on the page, that way you can easily click and access relevant youtube reviews. Disclaimer: This extension is 100% private and open source, I do not collect any data and I don't want to use your time to show you ads neither of us believes in! This project follows the moto: "Pay what you think is worth". If you like this extension and want to contribute to its development you can do so here: www.buymeacoffee.com/tiagorbf Thanks Github repo: https://github.com/tiagorbf/youtube-product-reviews-plugin
擴展基本資訊
名稱 | |
ID | epffndbljlnghnfjomejlojlmikegfod |
官方網址 | https://chrome.google.com/webstore/detail/video-reviews-for-buying/epffndbljlnghnfjomejlojlmikegfod |
簡介 | While checking an online store this plugin connects you with relevant review videos that will help you make a good decision |
檔案大小 | 1.32 MB |
安裝次數 | 54 |
目前版本 | 1.1.0 |
更新時間 | 2021-07-17 |
上架時間 | 2021-01-26 |
評分 | 5.00/5 共 2 次評分 |
開發者 | tiagorbf |
電子郵箱 | [email protected] |
付費類型 | free |
說明頁面URL | https://www.buymeacoffee.com/tiagorbf |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Reviews For Buying Online", "version": "1.1.0", "description": "While checking an online store this plugin connects you with relevant review videos that will help you make a good decision", "manifest_version": 2, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "include_globs": [ "*:\/\/*.amazon.*\/*", "*:\/\/*.thomann.*\/*", "*:\/\/*.musicstore.*\/*", "*:\/\/*.ebay.*\/*", "*:\/\/*.etsy.*\/*", "*:\/\/*.royalqueenseeds.*\/*", "*:\/\/*.alibaba.*\/*", "*:\/\/*.bestbuy.*\/*" ], "js": [ "extensions\/content.js" ], "all_frames": true, "run_at": "document_start" } ], "browser_action": { "default_icon": "icon.png" }, "web_accessible_resources": [ "icon.png", "youtube.png" ], "icons": { "32": "icon.png", "48": "icon_48.png" } } |