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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "While checking an online store this plugin connects you with relevant review videos that will help you make a good decision"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Video Reviews For Buying Online एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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" } } |