├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── appveyor.yml ├── babel.config.dev.js ├── chrome ├── app │ └── components │ │ ├── Button.css │ │ ├── Button.js │ │ ├── CodeDiff.css │ │ ├── CodeDiff.js │ │ ├── Dropdown.css │ │ ├── Dropdown.js │ │ ├── FeedbackForm.css │ │ ├── FeedbackForm.js │ │ ├── HeaderBar.css │ │ ├── HeaderBar.js │ │ ├── Icon.css │ │ ├── Icon.js │ │ ├── StylesheetCodePreview.css │ │ ├── StylesheetCodePreview.js │ │ ├── Switcher.css │ │ ├── Switcher.js │ │ └── WhiteTextLogo.js ├── assets │ └── img │ │ ├── default_128x128.png │ │ ├── default_16x16.png │ │ ├── default_19x19.png │ │ ├── default_38x38.png │ │ ├── default_48x48.png │ │ ├── plus_128x128.png │ │ ├── plus_16x16.png │ │ ├── plus_19x19.png │ │ ├── plus_38x38.png │ │ ├── plus_48x48.png │ │ ├── white-text-logo.png │ │ ├── white-text-logo@2x.png │ │ └── white-text-logo@3x.png ├── extension │ ├── background.js │ ├── background │ │ ├── badge.js │ │ ├── contextMenus.js │ │ ├── inject.js │ │ └── view_styleurl │ │ │ └── ViewStyleURL.js │ ├── create_styleurl.css │ ├── create_styleurl.js │ ├── create_styleurl │ │ ├── CreateStyleURL.js │ │ ├── Gist.css │ │ ├── Gist.js │ │ ├── fonts.css │ │ ├── fonts │ │ │ ├── OpenSans-Bold.ttf │ │ │ ├── OpenSans-BoldItalic.ttf │ │ │ ├── OpenSans-ExtraBold.ttf │ │ │ ├── OpenSans-ExtraBoldItalic.ttf │ │ │ ├── OpenSans-Italic.ttf │ │ │ ├── OpenSans-Light.ttf │ │ │ ├── OpenSans-LightItalic.ttf │ │ │ ├── OpenSans-Regular.ttf │ │ │ ├── OpenSans-SemiBold.ttf │ │ │ └── OpenSans-SemiBoldItalic.ttf │ │ └── messages.js │ ├── css_manager_content_script.js │ ├── devtools.js │ ├── github_gist_content_script.js │ ├── inject_create_styleurl.js │ ├── inject_view_styleurl.js │ ├── inline_style_observer.js │ ├── inline_style_observer │ │ ├── inline_style_observer.js │ │ └── inline_style_observer_manager.js │ ├── lib │ │ ├── StyleURLTab.js │ │ ├── api.js │ │ ├── browserAction.js │ │ ├── gists.js │ │ ├── injectScriptNames.js │ │ ├── injectShadowDom.js │ │ ├── makeEverythingImportant.js │ │ ├── port.js │ │ ├── stylefile.js │ │ └── toFile.js │ ├── postcss.config.js │ ├── stylesheet_manager_content_script.js │ ├── version_info.js │ └── view_styleurl │ │ └── ViewStyleURL.js ├── manifest.dev.json ├── manifest.prod.json └── views │ ├── background.pug │ ├── create_styleurl.pug │ ├── devtools.pug │ ├── inject.pug │ └── window.pug ├── package.json ├── scripts ├── .eslintrc ├── build.js ├── compress.js ├── dev.js ├── tasks.js └── update-readme.js ├── stats.json ├── webpack ├── .eslintrc ├── customPublicPath.js ├── dev.config.js ├── prod.config.js ├── replace │ ├── JsonpMainTemplate.runtime.js │ └── process-update.js └── test.config.js ├── yarn-error.log └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | key.pem 2 | node_modules 3 | dev 4 | dist 5 | build 6 | build.zip 7 | credentials.json 8 | releases -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.1.15 2 | 3 | Fix bug in feedback box in ViewStyleURL bar 4 | 5 | ## 1.1.14 6 | 7 | The bottom bar is now hidden when in print mode. Thanks whomever wrote in and flagged this issue. 8 | 9 | ## 1.1.13 10 | 11 | StyleURL now supports creating secret gists, so that they don't appear in search or anywhere public. This is now the behavior by default. 12 | 13 | ## 1.1.12 14 | 15 | Fixed issue where navigating around in Reddit sometimes caused a giant diff to appear of changes on the page. This happened because: 16 | 17 | Reddit uses `