Backseat Hunter
Comment on Product Hunt posts, even with no comment access.
什麼是Backseat Hunter?
Backseat Hunter是由oelmekki開發的Chrome擴展程式,該擴展的主要功能是“Comment on Product Hunt posts, even with no comment access.”。
擴展截圖
下載Backseat Hunter擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | dijkinlhigijhhcgjnocgnefgaolkhgm |
| 官方網址 | 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"
}
]
} | |