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 |
公式URL | 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 |
Eメール | [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" } } |