Price on Fire
This extension fetches the best prices for products you're interested in.
Price on Fireคืออะไร?
Price on Fire เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://www.anuj.ca และคุณลักษณะหลักของมันคือ "This extension fetches the best prices for products you're interested in."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Price on Fire
ดาวน์โหลดไฟล์ส่วนขยาย Price on Fire ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Price on Fire is an easy to use extension that helps consumers find the best prices for the products they wish to purchase. This extension compares product prices on Amazon with the prices of the same products on eBay. All you have to do is go to an Amazon product page, and once the page is fully loaded, click on the orange PoF logo and watch the prices from eBay merchants show up.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | dafbpnlkdiglfmakihogdipapknmoghd |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/price-on-fire/dafbpnlkdiglfmakihogdipapknmoghd |
คำอธิบาย | This extension fetches the best prices for products you're interested in. |
ขนาดไฟล์ | 70.73 KB |
จำนวนการติดตั้ง | 10 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2014-10-20 |
วันที่เผยแพร่ | 2014-10-20 |
ผู้พัฒนา | http://www.anuj.ca |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://anuj.ca/price-on-fire/ |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Price on Fire", "description": "This extension fetches the best prices for products you're interested in.", "version": "1.1", "background": { "scripts": [ "resources\/js\/jquery-1.11.1.min.js", "background.js" ], "persistent": false }, "content_security_policy": "script-src 'self' https:\/\/stats.g.doubleclick.net; object-src 'self'", "permissions": [ "http:\/\/svcs.ebay.com\/", "activeTab", "declarativeContent" ], "page_action": { "default_icon": { "19": "resources\/images\/icon_19.png", "38": "resources\/images\/icon_38.png" }, "default_popup": "popup.html", "default_title": "Price on Fire" }, "content_scripts": [ { "js": [ "resources\/js\/jquery-1.11.1.min.js", "search_ebay.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |