diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 43444c5..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,16 +0,0 @@ -## 2.0: 2012-05-07 -- Updated to Google Chrome manifest version 2. -- Removed the dedicated background.html page. -- Added jQuery and refactored code. -- Fixed a limitation in which all menu titles had to be unique. -- Re-centered icon images. - -
- -## 1.1: 2012-03-15 -- Load default settings if none exists. - -
- -## 1.0: 2012-03-15 -- First public release. diff --git a/LICENSE b/LICENSE index fd30595..1121d41 100644 --- a/LICENSE +++ b/LICENSE @@ -1,23 +1,21 @@ -Copyright (c) 2012, Ching Chow -All rights reserved. +MIT License -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: +Copyright (c) 2018 Ching Chow - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 229ef32..bc1ecd2 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,10 @@ -Lookup Assistant is an extension for the Google Chrome web browser that enables -a user to perform search and other operations on highlighted text via the -right-click menu. An options page allows customization of the menu to perform -nearly any type of lookup operation for almost any website the user desires. -Custom settings are saved using HTML5 local storage. +# Lookup Assistant -- Simple and unobtrusive user interface. -- User customizable menus. - -Available for free in the Chrome Web Store. +A Google Chrome extension that enables a user to perform search and other operations on highlighted text via right-click. -
+## Features -[Screenshots & Download][1] | [Changelog][2] +- Simple and unobtrusive user interface. +- User customizable menus. -[1]: https://chrome.google.com/webstore/detail/gffkdmepjpippahnkmhellmgoinojhle "Screenshots & Download" -[2]: https://github.com/smwst/Lookup-Assistant/blob/master/CHANGELOG.md "Changelog" +[![Chrome Web Store](./assets/ChromeWebStore_Badge_v2_206x58.png)](https://chrome.google.com/webstore/detail/gffkdmepjpippahnkmhellmgoinojhle) diff --git a/assets/ChromeWebStore_Badge_v2_206x58.png b/assets/ChromeWebStore_Badge_v2_206x58.png new file mode 100644 index 0000000..a5f08bd Binary files /dev/null and b/assets/ChromeWebStore_Badge_v2_206x58.png differ diff --git a/icon_128.png b/assets/icon_128.png similarity index 100% rename from icon_128.png rename to assets/icon_128.png diff --git a/icon_16.png b/assets/icon_16.png similarity index 100% rename from icon_16.png rename to assets/icon_16.png diff --git a/icon_48.png b/assets/icon_48.png similarity index 100% rename from icon_48.png rename to assets/icon_48.png diff --git a/promo_280.png b/assets/promo_280.png similarity index 100% rename from promo_280.png rename to assets/promo_280.png diff --git a/screenshot_01.png b/assets/screenshot_01.png similarity index 100% rename from screenshot_01.png rename to assets/screenshot_01.png diff --git a/screenshot_02.png b/assets/screenshot_02.png similarity index 100% rename from screenshot_02.png rename to assets/screenshot_02.png diff --git a/manifest.json b/manifest.json index 149cd0b..be1c3b1 100644 --- a/manifest.json +++ b/manifest.json @@ -5,9 +5,9 @@ "description": "Lookup highlighted text.", "icons": { - "16": "icon_16.png", - "48": "icon_48.png", - "128": "icon_128.png" + "16": "assets/icon_16.png", + "48": "assets/icon_48.png", + "128": "assets/icon_128.png" }, "background": {