1
0
mirror of https://github.com/nileshtrivedi/better synced 2025-06-27 09:03:11 +02:00

WIP: Fetch list from URL

This commit is contained in:
Nilesh
2020-08-02 23:04:43 +05:30
parent af891cb527
commit e284d5c6ad
4 changed files with 61 additions and 17 deletions

View File

@ -1,25 +1,18 @@
// document.body.style.border = "15px solid red";
/*
IN PROGRESS:
- List of alternatives should be loaded from a user-specified external source. Can be modified via options.html/options.js
TODO
- Pop-up should be formatted to look better.
- Pop-up should be dismissable (per URL / per domain).
- Once dismissed, popup should not be shown on the same url/domain. Use cookies or localStorage for this.
- List of alternatives should be loaded from a user-specified external source. Can be modified via options.html/options.js
- Since we're replacing innerHTML, we should protect against XSS attacks.
*/
BETTER_ALTERNATIVES = [
[ /https?:\/\/(www.)?google.com\/chrome/ , "A better alternative is <a href='https://mozilla.com' target='_blank'>Mozilla</a>."]
]
function findBetter(url) {
var match = BETTER_ALTERNATIVES.find(pattern => url.match(pattern[0]));
if(match)
return match[1];
else return null;
}
function showBetter(alternative) {
if(!alternative) return;
let betterdiv = document.createElement("div");
@ -37,3 +30,9 @@ function showBetter(alternative) {
}
showBetter(findBetter(document.location.href));
chrome.runtime.sendMessage({type: 'getMatch', url: document.location.href}, (response) => {
if (response) {
showBetter(response);
}
});