├── .gitignore ├── license.txt ├── newtab ├── README.md ├── screenshot.png └── src │ ├── apps.html │ ├── apps.js │ ├── icon128.png │ ├── icon16.png │ ├── icon48.png │ └── manifest.json ├── urlintitle ├── README.md ├── icon128.pdn ├── icon16.pdn ├── icon48.pdn ├── screenshot_1_usage_chrome.png ├── screenshot_1_usage_edge.png ├── screenshot_2_options.png ├── src │ ├── background.js │ ├── icon128.png │ ├── icon16.png │ ├── icon48.png │ ├── manifest.json │ ├── options.html │ ├── options_lib.js │ ├── options_ui.js │ ├── page_hook.js │ ├── punycode.js │ └── title_lib.js └── test.html ├── xframe_ignore ├── README.md ├── icon128.pdn ├── icon16.pdn ├── icon48.pdn ├── iframe_container.html ├── iframe_content_xframe_header.php ├── iframe_content_xframe_http-equiv.html ├── screenshot_1_before_after.png └── src │ ├── icon128.png │ ├── icon16.png │ ├── icon48.png │ ├── manifest.json │ └── net_rules.json └── zip.ps1 /.gitignore: -------------------------------------------------------------------------------- 1 | _metadata 2 | -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/license.txt -------------------------------------------------------------------------------- /newtab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/newtab/README.md -------------------------------------------------------------------------------- /newtab/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/newtab/screenshot.png -------------------------------------------------------------------------------- /newtab/src/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/newtab/src/apps.html -------------------------------------------------------------------------------- /newtab/src/apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/newtab/src/apps.js -------------------------------------------------------------------------------- /newtab/src/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/newtab/src/icon128.png -------------------------------------------------------------------------------- /newtab/src/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/newtab/src/icon16.png -------------------------------------------------------------------------------- /newtab/src/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/newtab/src/icon48.png -------------------------------------------------------------------------------- /newtab/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/newtab/src/manifest.json -------------------------------------------------------------------------------- /urlintitle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/urlintitle/README.md -------------------------------------------------------------------------------- /urlintitle/icon128.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/urlintitle/icon128.pdn -------------------------------------------------------------------------------- /urlintitle/icon16.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/urlintitle/icon16.pdn -------------------------------------------------------------------------------- /urlintitle/icon48.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/urlintitle/icon48.pdn -------------------------------------------------------------------------------- /urlintitle/screenshot_1_usage_chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/urlintitle/screenshot_1_usage_chrome.png -------------------------------------------------------------------------------- /urlintitle/screenshot_1_usage_edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/urlintitle/screenshot_1_usage_edge.png -------------------------------------------------------------------------------- /urlintitle/screenshot_2_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/urlintitle/screenshot_2_options.png -------------------------------------------------------------------------------- /urlintitle/src/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/urlintitle/src/background.js -------------------------------------------------------------------------------- /urlintitle/src/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/urlintitle/src/icon128.png -------------------------------------------------------------------------------- /urlintitle/src/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/urlintitle/src/icon16.png -------------------------------------------------------------------------------- /urlintitle/src/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/urlintitle/src/icon48.png -------------------------------------------------------------------------------- /urlintitle/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/urlintitle/src/manifest.json -------------------------------------------------------------------------------- /urlintitle/src/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/urlintitle/src/options.html -------------------------------------------------------------------------------- /urlintitle/src/options_lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/urlintitle/src/options_lib.js -------------------------------------------------------------------------------- /urlintitle/src/options_ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/urlintitle/src/options_ui.js -------------------------------------------------------------------------------- /urlintitle/src/page_hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/urlintitle/src/page_hook.js -------------------------------------------------------------------------------- /urlintitle/src/punycode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/urlintitle/src/punycode.js -------------------------------------------------------------------------------- /urlintitle/src/title_lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/urlintitle/src/title_lib.js -------------------------------------------------------------------------------- /urlintitle/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/urlintitle/test.html -------------------------------------------------------------------------------- /xframe_ignore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/xframe_ignore/README.md -------------------------------------------------------------------------------- /xframe_ignore/icon128.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/xframe_ignore/icon128.pdn -------------------------------------------------------------------------------- /xframe_ignore/icon16.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/xframe_ignore/icon16.pdn -------------------------------------------------------------------------------- /xframe_ignore/icon48.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/xframe_ignore/icon48.pdn -------------------------------------------------------------------------------- /xframe_ignore/iframe_container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/xframe_ignore/iframe_container.html -------------------------------------------------------------------------------- /xframe_ignore/iframe_content_xframe_header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/xframe_ignore/iframe_content_xframe_header.php -------------------------------------------------------------------------------- /xframe_ignore/iframe_content_xframe_http-equiv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/xframe_ignore/iframe_content_xframe_http-equiv.html -------------------------------------------------------------------------------- /xframe_ignore/screenshot_1_before_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/xframe_ignore/screenshot_1_before_after.png -------------------------------------------------------------------------------- /xframe_ignore/src/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/xframe_ignore/src/icon128.png -------------------------------------------------------------------------------- /xframe_ignore/src/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/xframe_ignore/src/icon16.png -------------------------------------------------------------------------------- /xframe_ignore/src/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/xframe_ignore/src/icon48.png -------------------------------------------------------------------------------- /xframe_ignore/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/xframe_ignore/src/manifest.json -------------------------------------------------------------------------------- /xframe_ignore/src/net_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/xframe_ignore/src/net_rules.json -------------------------------------------------------------------------------- /zip.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guilryder/chrome-extensions/HEAD/zip.ps1 --------------------------------------------------------------------------------