├── .gitignore ├── CHANGELOG.md ├── Gruntfile.js ├── README.md ├── bower.json ├── package.json ├── src ├── _locales │ ├── en │ │ └── messages.json │ ├── hu │ │ └── messages.json │ ├── zh-CN │ │ └── messages.json │ └── zh │ │ └── messages.json ├── background.js ├── cloud │ └── onedrive.js ├── common.js ├── i18n.js ├── manifest.json ├── model.js ├── options │ ├── options.html │ └── options.js ├── popup │ ├── popup.html │ └── popup.js ├── static │ ├── css │ │ ├── bootstrap-theme.min.css │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── images │ │ ├── r128.png │ │ ├── r20.png │ │ ├── r25.png │ │ ├── r30.png │ │ ├── r40.png │ │ ├── r48.png │ │ └── r96.png │ └── js │ │ ├── bootstrap.js │ │ └── jquery.js └── storage.js └── tools ├── ad-440x280.png ├── ad-440x280.psd ├── ad-920x680.png ├── ad-920x680.psd ├── gooreplacer.gson ├── r-128x128.png ├── r-128x128.psd ├── r-20x20.psd ├── r-25x25.psd ├── r-40x40.psd ├── r-48x48.psd ├── r-96x96.png ├── r-96x96.psd ├── rules.json ├── rules_demo.json ├── rules_geekzu.json ├── rules_lolinet.json ├── screen_onlineURL-1280x800.png ├── screen_onlineURL.png ├── screen_options-1280x640.png ├── screen_options-1280x800.png ├── screen_options-440x280.png ├── screen_options.png ├── screen_popup.png ├── screen_rule-1280x800.png └── screen_rule.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/bower.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/package.json -------------------------------------------------------------------------------- /src/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/_locales/en/messages.json -------------------------------------------------------------------------------- /src/_locales/hu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/_locales/hu/messages.json -------------------------------------------------------------------------------- /src/_locales/zh-CN/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/_locales/zh-CN/messages.json -------------------------------------------------------------------------------- /src/_locales/zh/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/_locales/zh/messages.json -------------------------------------------------------------------------------- /src/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/background.js -------------------------------------------------------------------------------- /src/cloud/onedrive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/cloud/onedrive.js -------------------------------------------------------------------------------- /src/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/common.js -------------------------------------------------------------------------------- /src/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/i18n.js -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/model.js -------------------------------------------------------------------------------- /src/options/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/options/options.html -------------------------------------------------------------------------------- /src/options/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/options/options.js -------------------------------------------------------------------------------- /src/popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/popup/popup.html -------------------------------------------------------------------------------- /src/popup/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/popup/popup.js -------------------------------------------------------------------------------- /src/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /src/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/static/images/r128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/static/images/r128.png -------------------------------------------------------------------------------- /src/static/images/r20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/static/images/r20.png -------------------------------------------------------------------------------- /src/static/images/r25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/static/images/r25.png -------------------------------------------------------------------------------- /src/static/images/r30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/static/images/r30.png -------------------------------------------------------------------------------- /src/static/images/r40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/static/images/r40.png -------------------------------------------------------------------------------- /src/static/images/r48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/static/images/r48.png -------------------------------------------------------------------------------- /src/static/images/r96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/static/images/r96.png -------------------------------------------------------------------------------- /src/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/static/js/bootstrap.js -------------------------------------------------------------------------------- /src/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/static/js/jquery.js -------------------------------------------------------------------------------- /src/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/src/storage.js -------------------------------------------------------------------------------- /tools/ad-440x280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/ad-440x280.png -------------------------------------------------------------------------------- /tools/ad-440x280.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/ad-440x280.psd -------------------------------------------------------------------------------- /tools/ad-920x680.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/ad-920x680.png -------------------------------------------------------------------------------- /tools/ad-920x680.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/ad-920x680.psd -------------------------------------------------------------------------------- /tools/gooreplacer.gson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/gooreplacer.gson -------------------------------------------------------------------------------- /tools/r-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/r-128x128.png -------------------------------------------------------------------------------- /tools/r-128x128.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/r-128x128.psd -------------------------------------------------------------------------------- /tools/r-20x20.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/r-20x20.psd -------------------------------------------------------------------------------- /tools/r-25x25.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/r-25x25.psd -------------------------------------------------------------------------------- /tools/r-40x40.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/r-40x40.psd -------------------------------------------------------------------------------- /tools/r-48x48.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/r-48x48.psd -------------------------------------------------------------------------------- /tools/r-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/r-96x96.png -------------------------------------------------------------------------------- /tools/r-96x96.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/r-96x96.psd -------------------------------------------------------------------------------- /tools/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/rules.json -------------------------------------------------------------------------------- /tools/rules_demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/rules_demo.json -------------------------------------------------------------------------------- /tools/rules_geekzu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/rules_geekzu.json -------------------------------------------------------------------------------- /tools/rules_lolinet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/rules_lolinet.json -------------------------------------------------------------------------------- /tools/screen_onlineURL-1280x800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/screen_onlineURL-1280x800.png -------------------------------------------------------------------------------- /tools/screen_onlineURL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/screen_onlineURL.png -------------------------------------------------------------------------------- /tools/screen_options-1280x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/screen_options-1280x640.png -------------------------------------------------------------------------------- /tools/screen_options-1280x800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/screen_options-1280x800.png -------------------------------------------------------------------------------- /tools/screen_options-440x280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/screen_options-440x280.png -------------------------------------------------------------------------------- /tools/screen_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/screen_options.png -------------------------------------------------------------------------------- /tools/screen_popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/screen_popup.png -------------------------------------------------------------------------------- /tools/screen_rule-1280x800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/screen_rule-1280x800.png -------------------------------------------------------------------------------- /tools/screen_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengyc/URLRedirector/HEAD/tools/screen_rule.png --------------------------------------------------------------------------------