├── .bowerrc ├── .travis.yml ├── images ├── icon.png ├── icon128.png ├── spinner.png ├── add-icon.png ├── command-default.png └── icon-highlight.png ├── fonts ├── Lato-Bold.ttf ├── Lato-Italic.ttf ├── Lato-Light.ttf └── Lato-Regular.ttf ├── scripts ├── test.js ├── config.js ├── lib │ ├── analytics.js │ ├── add-gist.js │ ├── store.js │ ├── console.js │ └── commands.js ├── main.js ├── content-script.js ├── background.js └── options.js ├── background.html ├── test.html ├── styles ├── _animations.scss ├── style.scss └── style.css ├── LICENSE ├── package.json ├── .gitignore ├── README.md ├── manifest.json ├── options.html └── Gruntfile.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/vendor/" 3 | } -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "7" -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backtickbacktick/backtick/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backtickbacktick/backtick/HEAD/images/icon128.png -------------------------------------------------------------------------------- /images/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backtickbacktick/backtick/HEAD/images/spinner.png -------------------------------------------------------------------------------- /fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backtickbacktick/backtick/HEAD/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /fonts/Lato-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backtickbacktick/backtick/HEAD/fonts/Lato-Italic.ttf -------------------------------------------------------------------------------- /fonts/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backtickbacktick/backtick/HEAD/fonts/Lato-Light.ttf -------------------------------------------------------------------------------- /images/add-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backtickbacktick/backtick/HEAD/images/add-icon.png -------------------------------------------------------------------------------- /fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backtickbacktick/backtick/HEAD/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /images/command-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backtickbacktick/backtick/HEAD/images/command-default.png -------------------------------------------------------------------------------- /images/icon-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backtickbacktick/backtick/HEAD/images/icon-highlight.png -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- 1 | chrome.storage.sync.get(null, storage => { 2 | $('pre').html(JSON.stringify(storage, null, '\t')); 3 | }); -------------------------------------------------------------------------------- /background.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |16 | Note: You can also set a hotkey through the Chrome 18 | settings page. Do this if other extensions are interfering with the Backtick 19 | hotkey, 20 | or vice versa. 21 | 22 |
23 |28 | Commands you or someone else create that aren't officially supported. 29 |
30 | 34 | 37 | Learn 38 | how to create and add custom commands. 39 |45 | Curated Commands created by the Backtick team or contributed and reviewed. These 46 | commands are considered safe and are officially supported. 47 | 48 |
49 |${command.description}
152 | ` + (command.link ? `${command.link}` : '') + ` 153 |${command.description}
259 | ` + (command.link ? `${command.link}` : '') + ` 260 |