commit a7f0eabbc7819502311ae90942be4a1263b9a8d2 Author: eson <474420502@qq.com> Date: Mon Apr 26 18:42:12 2021 +0800 初始化 diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..e351a57 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,31 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "request": "launch", + "name": "Chrome Extension debugging", + "port": 9222, + "type": "chrome", + "runtimeArgs": [ + "--user-data-dir=/tmp/chromeproxy-userdata", + "--ignore-certificate-errors", + "--disable-dev-shm-usage", + "--mute-audio", + "--single-process", + "--safebrowsing-disable-auto-update", + "--disable-gpu", + "--no-sandbox", + "--disable-blink-features=AutomationControlled", + "--disable-infobars", + "--allow-running-insecure-content", + "--disable-features=TranslateUI", + "--test-type", + ], + "url": "http:/localhost:7123", + "webRoot": "${workspaceFolder}" + } + ] +} \ No newline at end of file diff --git a/background/worker.js b/background/worker.js new file mode 100644 index 0000000..b08f986 --- /dev/null +++ b/background/worker.js @@ -0,0 +1,16 @@ +console.log("background"); + +chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) { + console.log(request, sender) + sendResponse({}); +}); + + + + + + + + + + diff --git a/base.js b/base.js new file mode 100644 index 0000000..0519ecb --- /dev/null +++ b/base.js @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/content/inject.js b/content/inject.js new file mode 100644 index 0000000..6a96133 --- /dev/null +++ b/content/inject.js @@ -0,0 +1,37 @@ +// var href = window.location.href; + + + +setInterval(function name() { + chrome.runtime.sendMessage({say: "Hello"}) + fetch("http://localhost:12203/api").then((response)=>{ + console.log(response); + console.log(response.json()) + }) +}, 10000) + +// if(href.startsWith(Host)) { +// setInterval(function(){ +// GetTask(); +// }, 1); +// } else { +// setTimeout(function(){ +// chrome.runtime.sendMessage({ type: BackgroundMsgType.CLOSETAB }) +// }, 15000) +// } + +// function GetTask() { +// try { +// chrome.runtime.sendMessage({ type: BackgroundMsgType.GETTASK }, function(){}); +// } catch (error) { +// console.log(error); +// } +// }; + + + + + + + + diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..a6b9faa --- /dev/null +++ b/manifest.json @@ -0,0 +1,43 @@ +{ + "background": { + "scripts": [ + "base.js", + "background/worker.js" + ] + }, + "web_accessible_resources": [ + + ], + "browser_action": { + "default_icon": { + "16": "static/icons/16.png", + "32": "static/icons/32.png", + "48": "static/icons/48.png", + "64": "static/icons/64.png" + }, + "default_title": "hrtools" + }, + "content_scripts": [ { + "all_frames": true, + "js": [ + "content/inject.js" + ], + "matches": [ "" ], + "run_at": "document_end" + } ], + "description": "the daddy of hr", + "homepage_url": "http://474420502.top", + "icons": { + "128": "static/icons/128.png", + "16": "static/icons/16.png", + "32": "static/icons/32.png", + "48": "static/icons/48.png", + "64": "static/icons/64.png" + }, + + "manifest_version": 2, + "name": "hrtools", + "permissions": ["background", "http://*/*", "https://*/*", "proxy", "storage","tabs" , "activeTab", "webRequest", "webRequestBlocking", "", "webNavigation"], + "short_name": "hrtools", + "version": "0.1.0" +} diff --git a/server/go.mod b/server/go.mod new file mode 100644 index 0000000..4e62b63 --- /dev/null +++ b/server/go.mod @@ -0,0 +1,5 @@ +module server + +go 1.16 + +require github.com/gin-gonic/gin v1.7.1 diff --git a/server/go.sum b/server/go.sum new file mode 100644 index 0000000..e64a799 --- /dev/null +++ b/server/go.sum @@ -0,0 +1,54 @@ +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE= +github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= +github.com/gin-gonic/gin v1.7.1 h1:qC89GU3p8TvKWMAVhEpmpB2CIb1hnqt2UdKZaP93mS8= +github.com/gin-gonic/gin v1.7.1/go.mod h1:jD2toBW3GZUr5UMcdrwQA10I7RuaFOl/SGeDjXkfUtY= +github.com/go-playground/assert/v2 v2.0.1 h1:MsBgLAaY856+nPRTKrp3/OZK38U/wa0CcBYNjji3q3A= +github.com/go-playground/assert/v2 v2.0.1/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4= +github.com/go-playground/locales v0.13.0 h1:HyWk6mgj5qFqCT5fjGBuRArbVDfE4hi8+e8ceBS/t7Q= +github.com/go-playground/locales v0.13.0/go.mod h1:taPMhCMXrRLJO55olJkUXHZBHCxTMfnGwq/HNwmWNS8= +github.com/go-playground/universal-translator v0.17.0 h1:icxd5fm+REJzpZx7ZfpaD876Lmtgy7VtROAbHHXk8no= +github.com/go-playground/universal-translator v0.17.0/go.mod h1:UkSxE5sNxxRwHyU+Scu5vgOQjsIJAF8j9muTVoKLVtA= +github.com/go-playground/validator/v10 v10.4.1 h1:pH2c5ADXtd66mxoE0Zm9SUhxE20r7aM3F26W0hOn+GE= +github.com/go-playground/validator/v10 v10.4.1/go.mod h1:nlOn6nFhuKACm19sB/8EGNn9GlaMV7XkbRSipzJ0Ii4= +github.com/golang/protobuf v1.3.3 h1:gyjaxf+svBWX08ZjK86iN9geUJF0H6gp2IRKX6Nf6/I= +github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/json-iterator/go v1.1.9 h1:9yzud/Ht36ygwatGx56VwCZtlI/2AD15T1X2sjSuGns= +github.com/json-iterator/go v1.1.9/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/leodido/go-urn v1.2.0 h1:hpXL4XnriNwQ/ABnpepYM/1vCLWNDfUNts8dX3xTG6Y= +github.com/leodido/go-urn v1.2.0/go.mod h1:+8+nEpDfqqsY+g338gtMEUOtuK+4dEMhiQEgxpxOKII= +github.com/mattn/go-isatty v0.0.12 h1:wuysRhFDzyxgEmMf5xjvJ2M9dZoWAXNNr5LSBS7uHXY= +github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= +github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 h1:ZqeYNhU3OHLH3mGKHDcjJRFFRrJa6eAM5H+CtDdOsPc= +github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 h1:Esafd1046DLDQ0W1YjYsBW+p8U2u7vzgW2SQVmlNazg= +github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk= +github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= +github.com/ugorji/go v1.1.7 h1:/68gy2h+1mWMrwZFeD1kQialdSzAb432dtpeJ42ovdo= +github.com/ugorji/go v1.1.7/go.mod h1:kZn38zHttfInRq0xu/PH0az30d+z6vm202qpg1oXVMw= +github.com/ugorji/go/codec v1.1.7 h1:2SvQaVZ1ouYrrKKwoSk2pzd4A9evlKJb9oTL+OaLUSs= +github.com/ugorji/go/codec v1.1.7/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLYF3GoBXY= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 h1:psW17arqaxU48Z5kZ0CQnkZWQJsqcURM6tKiBApRjXI= +golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200116001909-b77594299b42 h1:vEOn+mP2zCOVzKckCZy6YsCtDblrpj/w7B9nxGNELpg= +golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.8 h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10= +gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= diff --git a/server/main.go b/server/main.go new file mode 100644 index 0000000..f76da4a --- /dev/null +++ b/server/main.go @@ -0,0 +1,56 @@ +package main + +import ( + "net/http" + + "github.com/gin-gonic/gin" +) + +// Cors 跨域中间间 +func Cors() gin.HandlerFunc { + return func(c *gin.Context) { + method := c.Request.Method //请求方法 + origin := c.Request.Header.Get("Origin") //请求头部 + // var headerKeys []string // 声明请求头keys + // for k := range c.Request.Header { + // headerKeys = append(headerKeys, k) + // } + // headerStr := strings.Join(headerKeys, ", ") + // if headerStr != "" { + // headerStr = fmt.Sprintf("access-control-allow-origin, access-control-allow-headers, %s", headerStr) + // } else { + // headerStr = "access-control-allow-origin, access-control-allow-headers" + // } + if origin != "" { + c.Writer.Header().Set("Access-Control-Allow-Origin", "*") + + c.Header("Access-Control-Allow-Origin", "*") // 这是允许访问所有域 + c.Header("Access-Control-Allow-Methods", "POST, GET, OPTIONS, PUT, DELETE,UPDATE") //服务器支持的所有跨域请求的方法,为了避免浏览次请求的多次'预检'请求 + // header的类型 + c.Header("Access-Control-Allow-Headers", "Authorization, Content-Length, X-CSRF-Token, Token,session,X_Requested_With,Accept, Origin, Host, Connection, Accept-Encoding, Accept-Language,DNT, X-CustomHeader, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, Cache-Control, Content-Type, Pragma") + // 允许跨域设置 可以返回其他子段 + c.Header("Access-Control-Expose-Headers", "Content-Length, Access-Control-Allow-Origin, Access-Control-Allow-Headers,Cache-Control,Content-Language,Content-Type,Expires,Last-Modified,Pragma,FooBar") // 跨域关键设置 让浏览器可以解析 + c.Header("Access-Control-Max-Age", "172800") // 缓存请求信息 单位为秒 + c.Header("Access-Control-Allow-Credentials", "true") // 跨域请求是否需要带cookie信息 默认设置为true + c.Set("content-type", "application/json") // 设置返回格式是json + } + + //放行所有OPTIONS方法 + if method == "OPTIONS" { + c.JSON(http.StatusOK, "Options Request!") + } + // 处理请求 + c.Next() // 处理请求 + } +} + +func main() { + eg := gin.Default() + eg.Use(Cors()) + eg.GET("api", func(c *gin.Context) { + c.JSON(0, gin.H{ + "api": "ok", + }) + }) + eg.Run(":12203") +} diff --git a/static/icons/128.png b/static/icons/128.png new file mode 100644 index 0000000..a6cb934 Binary files /dev/null and b/static/icons/128.png differ diff --git a/static/icons/16.png b/static/icons/16.png new file mode 100644 index 0000000..6e26126 Binary files /dev/null and b/static/icons/16.png differ diff --git a/static/icons/32.png b/static/icons/32.png new file mode 100644 index 0000000..f8bb2ef Binary files /dev/null and b/static/icons/32.png differ diff --git a/static/icons/48.png b/static/icons/48.png new file mode 100644 index 0000000..5469e4d Binary files /dev/null and b/static/icons/48.png differ diff --git a/static/icons/64.png b/static/icons/64.png new file mode 100644 index 0000000..2789c0a Binary files /dev/null and b/static/icons/64.png differ