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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } ] } |