├── .gitignore ├── LICENSE ├── README.md ├── css └── styles.css ├── demo.gif ├── html ├── confirm_template.html ├── preferences_template.html └── toolbar_button.html ├── img ├── icon-active.svg └── icon.svg ├── main.js ├── node ├── NotifyDomain.js ├── PastebinDomain.js └── package.json ├── package.json └── pastebinFormats.json /.gitignore: -------------------------------------------------------------------------------- 1 | node/node_modules/* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Worie/brackets-pastetobin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Worie/brackets-pastetobin/HEAD/README.md -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Worie/brackets-pastetobin/HEAD/css/styles.css -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Worie/brackets-pastetobin/HEAD/demo.gif -------------------------------------------------------------------------------- /html/confirm_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Worie/brackets-pastetobin/HEAD/html/confirm_template.html -------------------------------------------------------------------------------- /html/preferences_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Worie/brackets-pastetobin/HEAD/html/preferences_template.html -------------------------------------------------------------------------------- /html/toolbar_button.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/icon-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Worie/brackets-pastetobin/HEAD/img/icon-active.svg -------------------------------------------------------------------------------- /img/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Worie/brackets-pastetobin/HEAD/img/icon.svg -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Worie/brackets-pastetobin/HEAD/main.js -------------------------------------------------------------------------------- /node/NotifyDomain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Worie/brackets-pastetobin/HEAD/node/NotifyDomain.js -------------------------------------------------------------------------------- /node/PastebinDomain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Worie/brackets-pastetobin/HEAD/node/PastebinDomain.js -------------------------------------------------------------------------------- /node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Worie/brackets-pastetobin/HEAD/node/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Worie/brackets-pastetobin/HEAD/package.json -------------------------------------------------------------------------------- /pastebinFormats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Worie/brackets-pastetobin/HEAD/pastebinFormats.json --------------------------------------------------------------------------------