https://github.com/t8/fynder
Finds the most advanced words on any website of your choice
https://github.com/t8/fynder
chrome-extension js npm search-algorithm vocabulary
Last synced: 3 months ago
JSON representation
Finds the most advanced words on any website of your choice
- Host: GitHub
- URL: https://github.com/t8/fynder
- Owner: t8
- Created: 2018-09-10T21:59:33.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-20T04:12:10.000Z (over 5 years ago)
- Last Synced: 2025-01-13T17:34:17.317Z (4 months ago)
- Topics: chrome-extension, js, npm, search-algorithm, vocabulary
- Language: JavaScript
- Homepage: http://tateberenbaum.com/Fynder
- Size: 2.64 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fynder
[](https://www.codacy.com/app/tbaumer22/Fynder?utm_source=github.com&utm_medium=referral&utm_content=tbaumer22/Fynder&utm_campaign=Badge_Grade)A simple Google Chrome Extension that pulls the best vocabulary words on any website of your choice!
## Features
- Finds the top 15 vocabulary words of any website
- Displays the total word count of the site
- Retrieves the average word length of the article## Development Steps
- `git clone https://github.com/tbaumer22/Fynder.git`
- `npm install`
- Navigate to `chrome://extensions/`
- Click `Load unpacked`
- Select the `src` folder
### Editing CodeThis project includes node dependencies that are not normally compatible with direct web application development. As a way around this, I implemented Browserify, a simple tool to "compile" all dependencies into one JS file to run on the web.
To take advantage of this, any changes you make to the project need to be in the nodeAnalysis.js file. After you finish your edits, `cd` into the `src/analyzations` folder and type:
```browserfiy nodeAnalysis.js -o webAnalysis.js```This converts the previous file into a JS file to run on the extension.
### Submitting Changes
Any edits to improve the speed, efficiency, or add new features are happily welcomed. Please make a pull-request into Master if you'd like to do so.
(c) 2018 Tate Berenbaum
Special thanks to Marnix Bouhuis