Skip to content

Commit

Permalink
v4.0.0 - 2018-10-23
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornstar committed Oct 23, 2018
1 parent cd60f94 commit e234f8c
Show file tree
Hide file tree
Showing 13 changed files with 298 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
*.zip
node_modules
.DS_Store
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Intercept Redirect

## v4.0.0 - 2018-10-23
- Update SVG to occupy the whole frame
- Update app icons to occupy the whole frame
- Remove other sizes of icons
- Make the README match what's in the description
- Add .DS_Store to .gitignore
- Add a link in the README to install the extension
- List all supported domains in the README

## v3.9.0 - 2018-10-01
- Add a build script, outputs in build directory
- Move webstore assets into assets directory
Expand Down
28 changes: 27 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,33 @@
# Intercept Redirect

![Intercept Redirect Logo](https://raw.github.com/bjornstar/intercept-redirect/master/webextension/app_icon.png)

[![Travis CI](https://travis-ci.org/bjornstar/intercept-redirect.svg?branch=master)](https://travis-ci.org/bjornstar/intercept-redirect)
[![Appveyor](https://ci.appveyor.com/api/projects/status/9qrj76bt914531gg/branch/master?svg=true)](https://ci.appveyor.com/project/bjornstar/intercept-redirect/branch/master)
[![CircleCI](https://circleci.com/gh/bjornstar/intercept-redirect/tree/master.svg?style=svg)](https://circleci.com/gh/bjornstar/intercept-redirect/tree/master)

Skip tracking redirects that serve no purpose other than to waste your precious time.
Skip tracking redirects that serve no purpose other than to waste your valuable time.

## Supported Domains
- *.curseforge.com
- *.digidip.net
- disq.us
- exit.sc
- l.facebook.com
- www.google.co.jp
- news.url.google.com
- plus.url.google.com
- www.google.com
- l.instagram.com
- l.messenger.com
- slack-redir.net
- steamcommunity.com
- twitter.com
- t.umblr.com
- vk.com
- workable.com
- www.youtube.com

## Installation

Install the [Intercept Redirect Extension from the Chrome Webstore](https://chrome.google.com/webstore/detail/intercept-redirect/kdjmiebhgaleboaamnehjbamlghkoedf).
196 changes: 196 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bjornstar/intercept-redirect",
"version": "3.9.0",
"version": "4.0.0",
"description": "Skip tracking redirects that serve no purpose other than to waste your valuable time.",
"main": "webextension/index.js",
"dependencies": {},
Expand Down
Binary file added webextension/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
58 changes: 58 additions & 0 deletions webextension/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed webextension/icon128.png
Binary file not shown.
Binary file removed webextension/icon16.png
Binary file not shown.
Binary file removed webextension/icon32.png
Binary file not shown.
Binary file removed webextension/icon48.png
Binary file not shown.
Binary file removed webextension/icon64.png
Binary file not shown.
13 changes: 6 additions & 7 deletions webextension/manifest.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
{
"background": {
"scripts": [ "index.js" ]
},
},
"browser_action": {
"default_icon": "icon.png"
},
"description": "Skip tracking redirects that serve no purpose other than to waste your valuable time.",
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"64": "icon64.png",
"128": "icon128.png"
"128": "icon.png"
},
"manifest_version": 2,
"name": "Intercept Redirect",
Expand All @@ -34,5 +33,5 @@
"*://workable.com/",
"*://www.youtube.com/"
],
"version": "3.9.0"
"version": "4.0.0"
}

0 comments on commit e234f8c

Please sign in to comment.