Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dubzzz/js-fb-autopoke
Auto-poke script for Facebook written in JavaScript
https://github.com/dubzzz/js-fb-autopoke
facebook poke
Last synced: 16 days ago
JSON representation
Auto-poke script for Facebook written in JavaScript
- Host: GitHub
- URL: https://github.com/dubzzz/js-fb-autopoke
- Owner: dubzzz
- License: mit
- Created: 2014-06-18T12:59:18.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-04-20T18:05:49.000Z (over 3 years ago)
- Last Synced: 2024-10-14T20:34:02.413Z (29 days ago)
- Topics: facebook, poke
- Language: JavaScript
- Size: 5.86 KB
- Stars: 30
- Watchers: 4
- Forks: 15
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# js-fb-autopoke
Auto-poke script for Facebook written in JavaScript. You need to be on the webpage https://www.facebook.com/pokes/?notif_t=poke in order to launch this script.
## How to use it?
### Occasional use
On *Firefox*, *Google Chrome*:
- **right click** on the webpage
- select **Inspect element**
- select **Console**
- paste the code: `src/autopoke.js`
- press enter### Frequent use
Download the module `Greasemonkey` and create a new script. `Greasemonkey` will automatically run the script each time you go on poke webpage.
The source code should start with:
```JavaScript
// ==UserScript==
// @name poke
// @namespace fb
// @description poke
// @include https://www.facebook.com/pokes/?notif_t=poke
// @version 1
// @grant none
// ==/UserScript==
```
followed by `src/autopoke.js` or `src/autopoke.min.js`.