TODO: 修正inject background的框架设计.
This commit is contained in:
parent
c01e6b4717
commit
9ec4a86611
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
|||
*.crx
|
||||
proxyserver
|
||||
|
|
15
example/.vscode/launch.json
vendored
Normal file
15
example/.vscode/launch.json
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
// 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": [
|
||||
{
|
||||
"type": "chrome",
|
||||
"request": "launch",
|
||||
"name": "Launch Chrome against localhost",
|
||||
"url": "http://www.baidu.com",
|
||||
"webRoot": "${workspaceFolder}"
|
||||
}
|
||||
]
|
||||
}
|
27
example/background.js
Normal file
27
example/background.js
Normal file
|
@ -0,0 +1,27 @@
|
|||
|
||||
|
||||
chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {
|
||||
console.log(sender);
|
||||
chrome.tabs.executeScript(sender.tab.id, { runAt: "document_end", file: "task.js"}, function (results) {
|
||||
console.log(results);
|
||||
})
|
||||
sendResponse({});
|
||||
})
|
||||
|
||||
|
||||
|
||||
|
||||
// chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {
|
||||
// console.log(request, sender);
|
||||
// });
|
||||
|
||||
chrome.webRequest.onBeforeRequest.addListener(function(details){
|
||||
if( details.url.startsWith("http://eson.config") ) {
|
||||
// console.log(details);
|
||||
var params = new URLSearchParams(details.url)
|
||||
TaskUrl = params.get("taskurl");
|
||||
chrome.tabs.remove(details.tabId, function() { });
|
||||
return {cancel: true};
|
||||
}
|
||||
},{'urls':["<all_urls>"]},['blocking']);
|
||||
|
7
example/inject.js
Normal file
7
example/inject.js
Normal file
|
@ -0,0 +1,7 @@
|
|||
|
||||
|
||||
setTimeout(function () {
|
||||
chrome.runtime.sendMessage({}, function(resposne){
|
||||
console.log(resposne);
|
||||
})
|
||||
}, 3000);
|
22
example/manifest.json
Normal file
22
example/manifest.json
Normal file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"background": {
|
||||
"scripts": [
|
||||
"background.js"
|
||||
]
|
||||
},
|
||||
"content_scripts": [ {
|
||||
"all_frames": true,
|
||||
"js": [
|
||||
"inject.js"
|
||||
],
|
||||
"matches": [ "<all_urls>" ],
|
||||
"run_at": "document_end"
|
||||
} ],
|
||||
"description": "block all",
|
||||
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlurgt0Ykv740tjk1ebeiSX6UVVRRhxVvh+FvRMTe9PKzkAKUDEW2IjNUz1swxZA8ILnMvtyamAfiErTOxUFB8+zCADU/CK2YEhqUJo3tmHCg6EP2XJL220ZXjmIeft1AqJV1BmGRLhm8VnH8dJ2EThfcflx4JEdlh0/aLJr6UVjF2hPVX8JLAMTVjEfiC82KDNGgXDADqBm3E/6n+Dx+3KhgIYTXKIMk+qRVaOhjAJLh8a9OrDBwpylP5RDifTAyVVa9UOyoLNqynzC9oLabWUr1ovWAOiivhYknFCXnl5q971iNSFpmjc+ZW+aK+TRjMnJF84IeA170corVG3KgnwIDAQAB",
|
||||
"manifest_version": 2,
|
||||
"name": "ChromeProxyTest",
|
||||
"permissions": ["background", "storage","tabs" , "activeTab", "webRequest", "webRequestBlocking", "<all_urls>", "webNavigation"],
|
||||
"short_name": "ChromeProxyTest",
|
||||
"version": "0.1.0"
|
||||
}
|
1
example/task.js
Normal file
1
example/task.js
Normal file
|
@ -0,0 +1 @@
|
|||
window.location.href = "http://www.baidu.com";
|
5
myblock/background/task.js
Normal file
5
myblock/background/task.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
|
||||
function ExecuteTask(response) {
|
||||
window.location.href = response.url;
|
||||
}
|
||||
ExecuteTask()
|
|
@ -1,17 +1,29 @@
|
|||
|
||||
|
||||
function GetTask() {
|
||||
fetch(TaskUrl)
|
||||
var task_manager = {
|
||||
}
|
||||
|
||||
chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {
|
||||
function GetTask(sender) {
|
||||
fetch(TaskUrl).then(function (response) {
|
||||
task_manager[sender.tab.id] = response;
|
||||
chrome.tabs.executeScript(sender.tab.id, { "runAt": "document_end", file: "background/task.js" }, function (results) {
|
||||
})
|
||||
}).catch(function (reason) {
|
||||
console.log(reason);
|
||||
})
|
||||
}
|
||||
|
||||
chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) {
|
||||
switch (request.type) {
|
||||
case MsgType.CONTENT:
|
||||
console.log(request);
|
||||
case MsgType.TIMEOUT:
|
||||
// sendResponse({type: "error"})
|
||||
case BackgroundMsgType.CONTENT:
|
||||
console.log(request, task_manager, sender); // 利用sender tab id 返回正确的任务id
|
||||
case BackgroundMsgType.ERROR:
|
||||
console.log(request, task_manager, sender); // 利用sender tab id 返回正确的任务id
|
||||
case BackgroundMsgType.GETTASK:
|
||||
// sendResponse({type: "error"})
|
||||
}
|
||||
sendResponse({type: MsgType.NEWURL, url: "https://playerduo.com/api/playerDuo-service-v2/rip113?lang=en&deviceType=browser"});
|
||||
// sendResponse({type: MsgType.NEWURL, url: "https://playerduo.com/api/playerDuo-service-v2/rip113?lang=en&deviceType=browser"});
|
||||
GetTask(sender);
|
||||
sendResponse();
|
||||
});
|
||||
|
||||
|
||||
|
@ -26,6 +38,29 @@ chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {
|
|||
|
||||
|
||||
|
||||
// 配置使用的监听
|
||||
chrome.webRequest.onBeforeRequest.addListener(function (details) {
|
||||
if (details.url.startsWith("http://eson.config")) {
|
||||
var params = new URLSearchParams(details.url)
|
||||
TaskUrl = params.get("taskurl");
|
||||
chrome.tabs.remove(details.tabId, function () { });
|
||||
return { cancel: true };
|
||||
}
|
||||
}, { 'urls': ["<all_urls>"] }, ['blocking']);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -58,7 +93,7 @@ chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {
|
|||
// );
|
||||
|
||||
|
||||
|
||||
|
||||
// fetch('https://playerduo.com/api/playerDuo-service-v2/rip113?lang=en&deviceType=browser').then(r => r.text()).then(result => {
|
||||
// // Result now contains the response text, do what you want...
|
||||
// console.log(result);
|
||||
|
|
|
@ -1,10 +1,17 @@
|
|||
|
||||
const TaskUrl = "http://localhost:8820";
|
||||
var TaskUrl = "http://localhost:7123/task/get";
|
||||
const TaskIDKey = "chrome_proxy_tid_key"
|
||||
|
||||
const MsgType = {
|
||||
const BackgroundMsgType = {
|
||||
|
||||
CONTENT: 'content',
|
||||
NEWURL: 'newurl',
|
||||
WAIT: 'wait',
|
||||
GETTASK: 'gettask',
|
||||
TIMEOUT: 'timeout',
|
||||
ERROR: 'error',
|
||||
}
|
||||
|
||||
const InjectMsgType = {
|
||||
FETCH: 'fetch',
|
||||
WAIT: 'wait',
|
||||
ERROR: 'error',
|
||||
}
|
||||
|
|
|
@ -1,57 +1,92 @@
|
|||
|
||||
|
||||
function Execute(response) {
|
||||
window.location.href = response.url;
|
||||
window.location.hash = response.tid
|
||||
}
|
||||
|
||||
function TimeoutClient(tm) {
|
||||
setTimeout(function () {
|
||||
chrome.runtime.sendMessage({ type: MsgType.TIMEOUT }, function (response) {
|
||||
switch (response.type) {
|
||||
case MsgType.NEWURL:
|
||||
Execute(response)
|
||||
case MsgType.WAIT:
|
||||
TimeoutClient(1000);
|
||||
}
|
||||
});
|
||||
}, tm);
|
||||
}
|
||||
var href = window.location.href;
|
||||
var content = document.documentElement.innerHTML;
|
||||
|
||||
var interval = setInterval(function(){
|
||||
GetTask();
|
||||
}, 6000)
|
||||
|
||||
var tm = 6000;
|
||||
try {
|
||||
var href = window.location.href;
|
||||
var tid = window.location.hash;
|
||||
if (href.startsWith("https://playerduo.com")) {
|
||||
var content = document.documentElement.innerHTML;
|
||||
if (
|
||||
content.startsWith('<head></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">')
|
||||
) {
|
||||
chrome.runtime.sendMessage(
|
||||
{
|
||||
type: MsgType.CONTENT,
|
||||
tid: tid,
|
||||
content: content,
|
||||
},
|
||||
function (response) {
|
||||
console.log(response.type, response);
|
||||
switch (response.type) {
|
||||
case MsgType.NEWURL:
|
||||
Execute(response);
|
||||
case MsgType.WAIT:
|
||||
tm = 1000;
|
||||
default:
|
||||
}
|
||||
}
|
||||
);
|
||||
if (content.startsWith('<head></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">')) {
|
||||
SendContent();
|
||||
clearInterval(interval);
|
||||
GetTask();
|
||||
}
|
||||
}
|
||||
} catch (error) {
|
||||
chrome.runtime.sendMessage({type: MsgType.ERROR, msg: error})
|
||||
} finally {
|
||||
TimeoutClient(tm);
|
||||
}
|
||||
|
||||
function SendContent() {
|
||||
chrome.runtime.sendMessage({ type: BackgroundMsgType.CONTENT, content: content },
|
||||
function (response) {
|
||||
console.log(response.type, response);
|
||||
})
|
||||
}
|
||||
|
||||
function GetTask() {
|
||||
chrome.runtime.sendMessage({ type: BackgroundMsgType.GETTASK }, function (response) {
|
||||
console.log(response);
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
// var reset = {
|
||||
// timeout: setTimeout(function () {
|
||||
// chrome.runtime.sendMessage({ type: BackgroundMsgType.TIMEOUT }, function (response) {
|
||||
// console.log(response);
|
||||
// })
|
||||
// GetTask(1000);
|
||||
// }, 7000),
|
||||
// isCancel: false,
|
||||
// }
|
||||
|
||||
|
||||
|
||||
// function GetTask(timeout) {
|
||||
// chrome.runtime.sendMessage({ type: BackgroundMsgType.GETTASK }, function (response) {
|
||||
// console.log("GetTask:", response.type, response);
|
||||
// switch (response.type) {
|
||||
// case InjectMsgType.WAIT:
|
||||
// if (!reset.isCancel) {
|
||||
// clearTimeout(reset.timeout);
|
||||
// reset.isCancel = true;
|
||||
// }
|
||||
// setTimeout(function () {
|
||||
// GetTask()
|
||||
// }, timeout) // 递归获取请求
|
||||
// case InjectMsgType.FETCH:
|
||||
// }
|
||||
// })
|
||||
// }
|
||||
|
||||
// var href = window.location.href;
|
||||
// if (href.startsWith("https://playerduo.com")) {
|
||||
// var content = document.documentElement.innerHTML;
|
||||
// if (content.startsWith('<head></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">')) {
|
||||
// chrome.runtime.sendMessage({ type: BackgroundMsgType.CONTENT, content: content },
|
||||
// function (response) {
|
||||
// console.log(response.type, response);
|
||||
// if (response.type === BackgroundMsgType.GETTASK) {
|
||||
// GetTask(1000); // 立即获取任务. 如果没有就等待
|
||||
// };
|
||||
// })
|
||||
// }
|
||||
// }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// chrome.runtime.onMessage.addListener(function (request) {
|
||||
// if (request.type === BackgroundMsgType.CONTENT) {
|
||||
|
||||
// }
|
||||
|
||||
// // chrome.runtime.onMessage.removeListener(assignTextToTextareas); //optional
|
||||
// });
|
||||
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlurgt0Ykv740tjk1ebeiSX6UVVRRhxVvh+FvRMTe9PKzkAKUDEW2IjNUz1swxZA8ILnMvtyamAfiErTOxUFB8+zCADU/CK2YEhqUJo3tmHCg6EP2XJL220ZXjmIeft1AqJV1BmGRLhm8VnH8dJ2EThfcflx4JEdlh0/aLJr6UVjF2hPVX8JLAMTVjEfiC82KDNGgXDADqBm3E/6n+Dx+3KhgIYTXKIMk+qRVaOhjAJLh8a9OrDBwpylP5RDifTAyVVa9UOyoLNqynzC9oLabWUr1ovWAOiivhYknFCXnl5q971iNSFpmjc+ZW+aK+TRjMnJF84IeA170corVG3KgnwIDAQAB",
|
||||
"manifest_version": 2,
|
||||
"name": "ChromeProxy",
|
||||
"permissions": [ "storage","tabs" , "activeTab", "webRequest", "webRequestBlocking", "<all_urls>", "webNavigation"],
|
||||
"permissions": ["background", "http://*/*", "https://*/*", "storage","tabs" , "activeTab", "webRequest", "webRequestBlocking", "<all_urls>", "webNavigation"],
|
||||
"short_name": "ChromeProxy",
|
||||
"version": "0.1.0"
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@ module git.nonolive.co/eson.hsm/proxyserver
|
|||
go 1.15
|
||||
|
||||
require (
|
||||
github.com/gin-gonic/gin v1.6.3 // indirect
|
||||
github.com/gin-gonic/gin v1.6.3
|
||||
github.com/go-playground/validator/v10 v10.4.1 // indirect
|
||||
github.com/golang/protobuf v1.4.3 // indirect
|
||||
github.com/json-iterator/go v1.1.10 // indirect
|
||||
|
|
|
@ -2,7 +2,9 @@ package main
|
|||
|
||||
import "github.com/gin-gonic/gin"
|
||||
|
||||
var engine = gin.New()
|
||||
|
||||
func main() {
|
||||
eg := gin.New()
|
||||
eg.GET("/task/get")
|
||||
|
||||
engine.Run(":7123")
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user