Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed entire application. Should work as intended now. #612

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
3 changes: 3 additions & 0 deletions GoodProxy.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
gdfmbipr:[email protected]:5868|http
gdfmbipr:[email protected]:7300|http
gdfmbipr:[email protected]:7492|http
26 changes: 26 additions & 0 deletions extension/proxy_auth_1/background.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@

var config = {
mode: "fixed_servers",
rules: {
singleProxy: {
scheme: "http",
host: "185.199.228.220",
port: parseInt(7300|http)
},
bypassList: ["localhost"]
}
};
chrome.proxy.settings.set({value: config, scope: "regular"}, function() {});
function callbackFn(details) {
return {
authCredentials: {
username: "gdfmbipr",
password: "b87b7t83bxoa"
}
};
}
chrome.webRequest.onAuthRequired.addListener(
callbackFn,
{urls: ["<all_urls>"]},
['blocking']
);
20 changes: 20 additions & 0 deletions extension/proxy_auth_1/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

{
"version": "1.0.0",
"manifest_version": 2,
"name": "Chrome Proxy",
"permissions": [
"proxy",
"tabs",
"unlimitedStorage",
"storage",
"<all_urls>",
"webRequest",
"webRequestBlocking"
],
"background": {
"scripts": ["background.js"]
},
"minimum_chrome_version":"22.0.0"
}

26 changes: 26 additions & 0 deletions extension/proxy_auth_10/background.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@

var config = {
mode: "fixed_servers",
rules: {
singleProxy: {
scheme: "http",
host: "38.154.227.167",
port: parseInt(5868)
},
bypassList: ["localhost"]
}
};
chrome.proxy.settings.set({value: config, scope: "regular"}, function() {});
function callbackFn(details) {
return {
authCredentials: {
username: "gdfmbipr",
password: "b87b7t83bxoa"
}
};
}
chrome.webRequest.onAuthRequired.addListener(
callbackFn,
{urls: ["<all_urls>"]},
['blocking']
);
20 changes: 20 additions & 0 deletions extension/proxy_auth_10/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

{
"version": "1.0.0",
"manifest_version": 2,
"name": "Chrome Proxy",
"permissions": [
"proxy",
"tabs",
"unlimitedStorage",
"storage",
"<all_urls>",
"webRequest",
"webRequestBlocking"
],
"background": {
"scripts": ["background.js"]
},
"minimum_chrome_version":"22.0.0"
}

26 changes: 26 additions & 0 deletions extension/proxy_auth_2/background.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@

var config = {
mode: "fixed_servers",
rules: {
singleProxy: {
scheme: "http",
host: "185.199.229.156",
port: parseInt(7492|http)
},
bypassList: ["localhost"]
}
};
chrome.proxy.settings.set({value: config, scope: "regular"}, function() {});
function callbackFn(details) {
return {
authCredentials: {
username: "gdfmbipr",
password: "b87b7t83bxoa"
}
};
}
chrome.webRequest.onAuthRequired.addListener(
callbackFn,
{urls: ["<all_urls>"]},
['blocking']
);
20 changes: 20 additions & 0 deletions extension/proxy_auth_2/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

{
"version": "1.0.0",
"manifest_version": 2,
"name": "Chrome Proxy",
"permissions": [
"proxy",
"tabs",
"unlimitedStorage",
"storage",
"<all_urls>",
"webRequest",
"webRequestBlocking"
],
"background": {
"scripts": ["background.js"]
},
"minimum_chrome_version":"22.0.0"
}

26 changes: 26 additions & 0 deletions extension/proxy_auth_3/background.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@

var config = {
mode: "fixed_servers",
rules: {
singleProxy: {
scheme: "http",
host: "38.154.227.167",
port: parseInt(5868|http)
},
bypassList: ["localhost"]
}
};
chrome.proxy.settings.set({value: config, scope: "regular"}, function() {});
function callbackFn(details) {
return {
authCredentials: {
username: "gdfmbipr",
password: "b87b7t83bxoa"
}
};
}
chrome.webRequest.onAuthRequired.addListener(
callbackFn,
{urls: ["<all_urls>"]},
['blocking']
);
20 changes: 20 additions & 0 deletions extension/proxy_auth_3/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

{
"version": "1.0.0",
"manifest_version": 2,
"name": "Chrome Proxy",
"permissions": [
"proxy",
"tabs",
"unlimitedStorage",
"storage",
"<all_urls>",
"webRequest",
"webRequestBlocking"
],
"background": {
"scripts": ["background.js"]
},
"minimum_chrome_version":"22.0.0"
}

26 changes: 26 additions & 0 deletions extension/proxy_auth_4/background.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@

var config = {
mode: "fixed_servers",
rules: {
singleProxy: {
scheme: "http",
host: "185.199.229.156",
port: parseInt(7492)
},
bypassList: ["localhost"]
}
};
chrome.proxy.settings.set({value: config, scope: "regular"}, function() {});
function callbackFn(details) {
return {
authCredentials: {
username: "gdfmbipr",
password: "b87b7t83bxoa"
}
};
}
chrome.webRequest.onAuthRequired.addListener(
callbackFn,
{urls: ["<all_urls>"]},
['blocking']
);
20 changes: 20 additions & 0 deletions extension/proxy_auth_4/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

{
"version": "1.0.0",
"manifest_version": 2,
"name": "Chrome Proxy",
"permissions": [
"proxy",
"tabs",
"unlimitedStorage",
"storage",
"<all_urls>",
"webRequest",
"webRequestBlocking"
],
"background": {
"scripts": ["background.js"]
},
"minimum_chrome_version":"22.0.0"
}

26 changes: 26 additions & 0 deletions extension/proxy_auth_5/background.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@

var config = {
mode: "fixed_servers",
rules: {
singleProxy: {
scheme: "http",
host: "185.199.228.220",
port: parseInt(7300)
},
bypassList: ["localhost"]
}
};
chrome.proxy.settings.set({value: config, scope: "regular"}, function() {});
function callbackFn(details) {
return {
authCredentials: {
username: "gdfmbipr",
password: "b87b7t83bxoa"
}
};
}
chrome.webRequest.onAuthRequired.addListener(
callbackFn,
{urls: ["<all_urls>"]},
['blocking']
);
20 changes: 20 additions & 0 deletions extension/proxy_auth_5/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

{
"version": "1.0.0",
"manifest_version": 2,
"name": "Chrome Proxy",
"permissions": [
"proxy",
"tabs",
"unlimitedStorage",
"storage",
"<all_urls>",
"webRequest",
"webRequestBlocking"
],
"background": {
"scripts": ["background.js"]
},
"minimum_chrome_version":"22.0.0"
}

26 changes: 26 additions & 0 deletions extension/proxy_auth_6/background.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@

var config = {
mode: "fixed_servers",
rules: {
singleProxy: {
scheme: "http",
host: "188.74.183.10",
port: parseInt(8279)
},
bypassList: ["localhost"]
}
};
chrome.proxy.settings.set({value: config, scope: "regular"}, function() {});
function callbackFn(details) {
return {
authCredentials: {
username: "gdfmbipr",
password: "b87b7t83bxoa"
}
};
}
chrome.webRequest.onAuthRequired.addListener(
callbackFn,
{urls: ["<all_urls>"]},
['blocking']
);
20 changes: 20 additions & 0 deletions extension/proxy_auth_6/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

{
"version": "1.0.0",
"manifest_version": 2,
"name": "Chrome Proxy",
"permissions": [
"proxy",
"tabs",
"unlimitedStorage",
"storage",
"<all_urls>",
"webRequest",
"webRequestBlocking"
],
"background": {
"scripts": ["background.js"]
},
"minimum_chrome_version":"22.0.0"
}

26 changes: 26 additions & 0 deletions extension/proxy_auth_7/background.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@

var config = {
mode: "fixed_servers",
rules: {
singleProxy: {
scheme: "http",
host: "154.95.36.199",
port: parseInt(6893)
},
bypassList: ["localhost"]
}
};
chrome.proxy.settings.set({value: config, scope: "regular"}, function() {});
function callbackFn(details) {
return {
authCredentials: {
username: "gdfmbipr",
password: "b87b7t83bxoa"
}
};
}
chrome.webRequest.onAuthRequired.addListener(
callbackFn,
{urls: ["<all_urls>"]},
['blocking']
);
20 changes: 20 additions & 0 deletions extension/proxy_auth_7/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

{
"version": "1.0.0",
"manifest_version": 2,
"name": "Chrome Proxy",
"permissions": [
"proxy",
"tabs",
"unlimitedStorage",
"storage",
"<all_urls>",
"webRequest",
"webRequestBlocking"
],
"background": {
"scripts": ["background.js"]
},
"minimum_chrome_version":"22.0.0"
}

Loading