Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cdevroe/unmark-chrome
An open source Chrome Extension for Unmark
https://github.com/cdevroe/unmark-chrome
Last synced: 4 months ago
JSON representation
An open source Chrome Extension for Unmark
- Host: GitHub
- URL: https://github.com/cdevroe/unmark-chrome
- Owner: cdevroe
- Created: 2014-02-07T14:59:21.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2019-05-09T19:59:01.000Z (almost 6 years ago)
- Last Synced: 2024-05-20T22:50:45.660Z (9 months ago)
- Language: JavaScript
- Homepage: https://unmark.it
- Size: 152 KB
- Stars: 32
- Watchers: 9
- Forks: 19
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Hey There
Here is our code for Unmark's Chrome extension. Feel free to use it. Below are a few instructions on how to customize it to work with your domain.## Chrome Extensions Tutorial
Not familiar with how to create Chrome extensions? [Click here to read the documentation](http://developer.chrome.com/extensions/index.html).## Using your own host
If you want to simply change the endpoint for this extension it's pretty simple.* Open `manifest.json` and find the block that looks like:
```
"permissions": [
"tabs",
"contextMenus",
"*://unmark.it/"
],
```Change the last line to match your site.
* Open `js/unmark/base.js` and change line 2 to point to the correct endpoint.
```
unmark.host = 'https://unmark.it';
```* Save
## Loading your version in Chrome
Now you should be able to load the unpacked extension locally and test. To do that simply follow these instructions:* Go To `chrome://extensions` in Chrome.
* Check the `Developer Mode` checkbox.
* Click the button that says `Load unpacked extension...`.
* Choose the location of your code.## Shipping your version
When you are ready to ship, just choose the `Pack extension...` button and follow the instructions.