Skip to content

Instantly share code, notes, and snippets.

View devjin0617's full-sized avatar
πŸ’»
μ €λŠ” κ°œλ°œμ„ ν•©λ‹ˆλ‹€

cheongjin kim (κΉ€μ²­μ§„) devjin0617

πŸ’»
μ €λŠ” κ°œλ°œμ„ ν•©λ‹ˆλ‹€
View GitHub Profile
@devjin0617
devjin0617 / .manifest
Created May 19, 2017 15:15
chrome extension using a content script to access the `window` object
{
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["inject.js"],
"all_frames": true
}
],
"web_accessible_resources": [
"content.js"
@devjin0617
devjin0617 / webpack.base.conf.js
Created January 5, 2017 23:13 — forked from vedovelli/webpack.base.conf.js
webpack base config for vue cli with support for Bootstrap and Font-awesome
var path = require('path')
module.exports = {
entry: {
app: './src/main.js'
},
output: {
path: path.resolve(__dirname, '../dist/static'),
publicPath: '/static/',
filename: '[name].js'
@devjin0617
devjin0617 / app.js
Created July 28, 2016 14:02 — forked from StephenFluin/app.js
Sample Trello node.js Webhook Server
/**
* This is a sample webhook server that listens for webhook
* callbacks coming from Trello, and updates any cards that are
* added or modified so everyone knows they are "PRIORITY"
*
* To get started
* * Add your key and token below
* * Install dependencies via `npm install express request body-parser`
* * Run `node app.js` on a publicly visible IP
* * Register your webhook and point to http://<ip or domain>:3123/priority