Hacker Tab (unofficial)
Replace browser new tab screen with GitHub trending projects.
什麼是Hacker Tab (unofficial)?
Hacker Tab (unofficial)是由rainchai4240開發的Chrome擴展程式,該擴展的主要功能是“Replace browser new tab screen with GitHub trending projects.”。
擴展截圖
下載Hacker Tab (unofficial)擴展crx文件
下載Hacker Tab (unofficial)擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
My personal version of hackertab, as the official hackertab extension is down, hence I decided to self-host a version of mine, all credits go to https://github.com/huchenme/hacker-tab-extension, I did not wrote any line of code 擴展基本資訊
| 名稱 | |
| ID | fjjkhllolplhgmoepkjjlbmpgfhpmbob |
| 官方網址 | https://chrome.google.com/webstore/detail/hacker-tab-unofficial/fjjkhllolplhgmoepkjjlbmpgfhpmbob |
| 簡介 | Replace browser new tab screen with GitHub trending projects. |
| 檔案大小 | 2.33 MB |
| 安裝次數 | 55 |
| 目前版本 | 1.10.0 |
| 更新時間 | 2020-10-22 |
| 上架時間 | 2020-10-22 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | rainchai4240 |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/huchenme/hacker-tab-extension |
| 說明頁面URL | https://github.com/huchenme/hacker-tab-extension |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Hacker Tab (unofficial)",
"author": "Hu Chen",
"version": "1.10.0",
"description": "Replace browser new tab screen with GitHub trending projects.",
"icons": {
"16": "16.png",
"48": "48.png",
"128": "128.png"
},
"chrome_url_overrides": {
"newtab": "index.html"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"storage",
"alarms"
]
} | |