Backseat Hunter
Comment on Product Hunt posts, even with no comment access.
Backseat Hunterคืออะไร?
Backseat Hunter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย oelmekki และคุณลักษณะหลักของมันคือ "Comment on Product Hunt posts, even with no comment access."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Backseat Hunter
ดาวน์โหลดไฟล์ส่วนขยาย Backseat Hunter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension allows anyone to discuss products on Product Hunt. When browsing a product page, you will see the extension appear in your url bar. Click it, and this will open a popup to comment the product on disqus, without leaving page.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Backseat Hunter |
ID | dijkinlhigijhhcgjnocgnefgaolkhgm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/backseat-hunter/dijkinlhigijhhcgjnocgnefgaolkhgm |
คำอธิบาย | Comment on Product Hunt posts, even with no comment access. |
ขนาดไฟล์ | 49.38 KB |
จำนวนการติดตั้ง | 18 |
เวอร์ชันปัจจุบัน | 1.6 |
อัปเดตครั้งล่าสุด | 2015-11-20 |
วันที่เผยแพร่ | 2015-11-20 |
ผู้พัฒนา | oelmekki |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Backseat Hunter", "version": "1.6", "manifest_version": 2, "description": "Comment on Product Hunt posts, even with no comment access.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "activeTab" ], "background": { "persistent": false, "scripts": [ "background_page\/main.js" ] }, "page_action": { "default_icon": { "38": "icon.png" }, "default_popup": "page_action\/main.html" }, "content_scripts": [ { "matches": [ "http:\/\/www.producthunt.com\/*", "https:\/\/www.producthunt.com\/*" ], "js": [ "content_script\/main.js" ], "run_at": "document_end" } ] } |