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: 7 months 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 11 years ago)
- Default Branch: master
- Last Pushed: 2025-02-20T08:37:02.000Z (8 months ago)
- Last Synced: 2025-03-18T10:51:37.366Z (7 months ago)
- Topics: facebook, poke
- Language: JavaScript
- Size: 7.81 KB
- Stars: 32
- Watchers: 4
- Forks: 16
- 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`.