├── .gitignore ├── icons ├── logo_16.png ├── logo_32.png ├── logo_48.png ├── logo_128.png ├── ignoreSiteIconsOK.png └── ignoreSiteIconsIgnore.png ├── README.md ├── squarify.js ├── manifest.json └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | DEV/logo.afdesign 2 | DEV/ 3 | -------------------------------------------------------------------------------- /icons/logo_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkyonVeil/ObliterateCurves/HEAD/icons/logo_16.png -------------------------------------------------------------------------------- /icons/logo_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkyonVeil/ObliterateCurves/HEAD/icons/logo_32.png -------------------------------------------------------------------------------- /icons/logo_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkyonVeil/ObliterateCurves/HEAD/icons/logo_48.png -------------------------------------------------------------------------------- /icons/logo_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkyonVeil/ObliterateCurves/HEAD/icons/logo_128.png -------------------------------------------------------------------------------- /icons/ignoreSiteIconsOK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkyonVeil/ObliterateCurves/HEAD/icons/ignoreSiteIconsOK.png -------------------------------------------------------------------------------- /icons/ignoreSiteIconsIgnore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArkyonVeil/ObliterateCurves/HEAD/icons/ignoreSiteIconsIgnore.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![ObliterateCurves](https://raw.githubusercontent.com/ArkyonVeil/ObliterateCurves/master/icons/logo_128.png) 2 | # ObliterateCurves 3 | Simple extension that removes rounded edges off the entire Internet. 4 | -------------------------------------------------------------------------------- /squarify.js: -------------------------------------------------------------------------------- 1 | var style = document.createElement('style'); 2 | document.head.appendChild(style); 3 | 4 | style.sheet.insertRule('* {border-radius: 0px !important;}'); 5 | style.sheet.insertRule('*::before {border-radius: 0px !important;}'); 6 | style.sheet.insertRule('*::after {border-radius: 0px !important;}'); 7 | -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version" : 2, 3 | "name": "Obliterate Curves", 4 | "description": "Simple extension that removes rounded edges off the entire Internet.", 5 | "version": "1.0.2", 6 | "author": "ArkyonVeil", 7 | "icons": { 8 | "16": "icons/logo_16.png", 9 | "48": "icons/logo_48.png", 10 | "128": "icons/logo_128.png" 11 | }, 12 | "browser_action": { 13 | "default_icon": "icons/logo_48.png" 14 | }, 15 | "permissions": [ 16 | "" 17 | ], 18 | "content_scripts" : [ 19 | { 20 | "matches": [""], 21 | "js": ["squarify.js"] 22 | } 23 | ], 24 | "browser_specific_settings": { 25 | "gecko": { 26 | "id": "obliteratecurves@arkyonveil" 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Arkyon 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | --------------------------------------------------------------------------------