removed amazon smile redirect script, since they're shutting it down

This commit is contained in:
Rudis Muiznieks 2023-01-27 09:19:49 -06:00
parent defbc1320f
commit 96e4862939
Signed by: rudism
GPG Key ID: CABF2F86EF7884F9
2 changed files with 1 additions and 17 deletions

View File

@ -48,8 +48,8 @@ cmp.setup {
preselect = cmp.PreselectMode.None,
confirmation = { get_commit_characters = function(_) return {} end },
sources = {
{ name = 'luasnip' },
{ name = 'nvim_lsp' },
{ name = 'luasnip' },
{ name = 'buffer' },
{ name = 'path' },
},

View File

@ -1,16 +0,0 @@
// ==UserScript==
// @name Redirect-Amazon
// @namespace code.sitosis.com
// @version 1.0
// @description Rediret Amazon
// @author rudism
// @match https://www.amazon.com/*
// @match https://amazon.com/*
// @grant none
// @run-at document-start
// ==/UserScript==
(function () {
'use strict';
top.location.hostname = "smile.amazon.com";
})();