Skip to content

Commit

Permalink
v0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Green-Tech-Lab committed Dec 25, 2020
1 parent 87ef579 commit a7c918c
Show file tree
Hide file tree
Showing 274 changed files with 113 additions and 26,452 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,20 @@

### 安装方法1:下载插件、离线安装

1. 下载GreenHub.crx,以下两个地址、任选一皆可:
* 百度网盘:http://pan.baidu.com/s/1gfyzWOV (推荐)
* github: https://github.com/pablocc1979/Green-Hub-Proxy/raw/master/hubproxy/greenhub.crx
1. 下载GreenHub.zip,以下三个地址、任选一皆可:
* 百度网盘:**敬请期待**
* github: https://github.com/pablocc1979/Green-Hub-Proxy/releases
* github: https://github.com/pablocc1979/Green-Hub-Proxy/archive/master.zip


2. 只需两步、即可安装&使用
* 解压 zip 压缩包到常用目录(**安装完成后也不可以删除,否则会导致插件失效**
* Chrome浏览器中输入:  chrome://extensions/ ,再选中“开发者模式”
* 将GreenHub.crx文件,拖拽到:chrome浏览器窗口, 即可
* 具体请参考该文档和视频录屏演示 http://pan.baidu.com/s/1gfyzWOV
* 点击左上角的 “加载已解压的扩展程序” 选中刚刚解压过的目录即可(**不要选中其中的文件,选中目录即可按确认**


### 安装方法2:chrome插件商店、正式安装
* https://chrome.google.com/webstore/search/greenhub?hl=zh-CN ; 选择GreenHub,即可安装&使用
* **等待发布**
* 提醒:需要先具备访问google翻墙网络能力

### 申明
Expand Down
6 changes: 6 additions & 0 deletions _locales/en/messages.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extName": {
"message": "GreenHub Proxy",
"description": ""
}
}
1 change: 1 addition & 0 deletions css/chunk-vendors.84bb20f7.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions css/options.1a1797ee.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions css/popup.f8c44c21.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added favicon.ico
Binary file not shown.
Binary file added fonts/element-icons.535877f5.woff
Binary file not shown.
Binary file added fonts/element-icons.732389de.ttf
Binary file not shown.
Binary file added icons/128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/19.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/38.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/disabled32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title><%= htmlWebpackPlugin.options.title %></title>
</head>
<body>
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>
2 changes: 2 additions & 0 deletions js/background.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions js/background.js.map

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions js/chunk-vendors.05d99012.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions js/chunk-vendors.05d99012.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions js/content-script.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions js/content-script.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions js/options.f518c5b0.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions js/options.f518c5b0.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions js/popup.ae8dcebf.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions js/popup.ae8dcebf.js.map

Large diffs are not rendered by default.

37 changes: 37 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"manifest_version": 2,
"name": "__MSG_extName__",
"homepage_url": "http://localhost:8080/",
"description": "GreenHub Proxy",
"default_locale": "en",
"permissions": [
"activeTab",
"storage",
"proxy",
"webRequest",
"webRequestBlocking",
"alarms",
"<all_urls>"
],
"icons": {
"128": "icons/128.png"
},
"background": {
"scripts": [
"js/background.js"
],
"persistent": true
},
"browser_action": {
"default_popup": "popup.html",
"default_title": "__MSG_extName__",
"default_icon": {
"32": "icons/disabled32.png"
}
},
"options_ui": {
"page": "options.html"
},
"version": "0.9.0",
"content_security_policy": "script-src 'self' ; object-src 'self'"
}
1 change: 1 addition & 0 deletions options.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><title>Options</title><link href="/css/chunk-vendors.84bb20f7.css" rel="preload" as="style"><link href="/css/options.1a1797ee.css" rel="preload" as="style"><link href="/js/chunk-vendors.05d99012.js" rel="preload" as="script"><link href="/js/options.f518c5b0.js" rel="preload" as="script"><link href="/css/chunk-vendors.84bb20f7.css" rel="stylesheet"><link href="/css/options.1a1797ee.css" rel="stylesheet"></head><body><div id="app"></div><script src="/js/chunk-vendors.05d99012.js"></script><script src="/js/options.f518c5b0.js"></script></body></html>
Loading

0 comments on commit a7c918c

Please sign in to comment.