├── .gitignore ├── LICENSE ├── README.md ├── build.sh ├── resources ├── 1280x800-1.png ├── 1280x800-2.png ├── 1280x800.png ├── 1400x560.png ├── 440x280.png ├── 920x680.png ├── demo.gif └── youtube.mp4 └── src ├── background.js ├── common.js ├── icons ├── icon.png ├── icon128.png ├── icon16.png ├── icon48.png └── icon48.svg ├── manifest.json ├── options.html ├── options.js ├── popup.html ├── popup.js └── vendor ├── jquery-3.3.1.min.js └── pure-min.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | src.zip 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 KiichI Takeuchi 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Copy Cat - Quickly Copy Title and URL 2 | 3 | # About this Chrome Extension 4 | 5 | I created this extension because similar extensions are too complicated and a few more clicks 6 | to do the simple thing for my daily operation. For example, I often copy PR's Title and URL 7 | in tickets or chat window. 8 | 9 |  10 | 11 | ## Chrome Web Store URL - Install it from here 12 | 13 | [Copy Cat - Quick Copy Title and URL - Chrome Web Store](https://chrome.google.com/webstore/detail/copy-cat-quick-copy-title/andlmjmbnlaamloflnelcafcnkiplhkc/) 14 | 15 | ## For Developers - How to install and test the latest 16 | 17 | 1. Clone Repository. 18 | ``` 19 | git clone https://github.com/kiichi/QuickCopyTitleAndURL.git 20 | ``` 21 | 2. Select Extensions from Chrome's menu 22 | 3. Turn on Developer mode (top right corner switch) 23 | 4. Select LOAD UNPACKED from the middle menu 24 | 5. Select src folder within this repository 25 | 6. See Cat Icon on Top Right Corner. 26 | 7. If you change the code, click reload button to test again. 27 | 28 | ## Debugging Tips 29 | 30 | 1. Some of manifest changes requires reloading plugin. Click reload or remove and load unpacked folder again. 31 | 2. In order to see console.log, click background page. 32 | 33 | 34 | ## Uploading to app store - Memo for myself 35 | 36 | 1. Bump the version in manifest.json 37 | 2. Run build.sh 38 | 3. Upload it to webstore. 39 | 4. Tag it in the master branch for the version number. 40 | 41 | Reference [Publish in the Chrome Web Store - Google Chrome](https://developer.chrome.com/webstore/publish?hl) 42 | 43 | ## Credits 44 | 45 | ### Contributers 46 | 47 | [jeske (David Jeske)](https://github.com/jeske) - Thanks for [Notification Prefix Cleaning PR #10](https://github.com/ 48 | kiichi/QuickCopyTitleAndURL/pull/10) 49 | 50 | [alejandro5042 (Alejandro Barreto)](https://github.com/alejandro5042) - Thanks for Font Size feedback and quick mockup design! #13 51 | 52 | [smaragdus](https://github.com/smaragdus) - Thanks for Font Size feedback and extensive review in Windows! #16 53 | 54 | 55 | ### Libraries and Resources 56 | 57 | jQuery v3.3.1 | (c) JS Foundation and other contributors | jquery.org/license 58 | 59 | Pure v1.0.0 60 | Copyright 2013 Yahoo! 61 | Licensed under the BSD License. 62 | [pure/LICENSE at master · pure-css/pure](https://github.com/pure-css/pure/blob/master/LICENSE) 63 | 64 | Icon Credits : M.Y 65 | 66 | ## Other Issues 67 | 68 | I noticed that very similar plugin has been published with same name "Copycat". 69 | Not sure why I missed it 2 years ago, but I might change the name of this extension 70 | if this causes some issues. [Version 1.5.0 · Issue #16 · kiichi/QuickCopyTitleAndURL](https://github.com/kiichi/QuickCopyTitleAndURL/issues/16#issuecomment-633143286) . 71 | I'm still holding decisions at this point. 72 | 73 | 74 | 75 | -------------------------------------------------------------------------------- /build.sh: -------------------------------------------------------------------------------- 1 | # TODO: bake version from manifest into options.html 2 | # sed 's/
130 | Copy Rich Text: 131 | - Windows: Alt+Shift+C 132 | - Mac: Ctrl+Shift+C 133 | 134 | Copy Markdown: 135 | - Windows: Alt+Shift+D 136 | - Mac: Ctrl+Shift+D 137 | 138 | Copy Title - URL: 139 | - Windows: Alt+Shift+X 140 | - Mac: Ctrl+Shift+X 141 | 142 | Copy Previous Format: 143 | - Windows: Alt+Shift+Z 144 | - Mac: Ctrl+Shift+Z145 |