Recensioni per javascript
javascript di chee
Recensione di BR
Valutata 5 su 5
di BR, 4 anni faThis add-on is amazing. I like to write small scripts to change websites I visit and was manually executing them when needed via the FF console. This tool automates all of it for me and allows quick development of new scripts. I would love to see an ability to export/import website scripts so that I could selectively import scripts onto all the machines I use. Thanks for sharing.
Replica dello sviluppatore
pubblicato il 5 mesi faoh! i actually added this feature, i forgot to tell you! if you go to "Manage Extension" for the extension and then "Preferences" you can copy and paste your scripts as json!
(there's a shortcut to the page by pressing the "JS" letters in the bottom right of the popup)
(there's a shortcut to the page by pressing the "JS" letters in the bottom right of the popup)
55 recensioni
- Valutata 5 su 5di sexy_pikachu, 2 mesi faVery convenient tool. I use this to trigger auto-scrolling.
```js
setInterval(() => window.scrollBy({
top: 100,
behavior: "smooth",
}), 100)
``` - Valutata 1 su 5di Владимир, 5 mesi fa
- Valutata 5 su 5di Andy, 7 mesi fa
- Valutata 5 su 5di Utente Firefox 17765782, 9 mesi fa
- Valutata 5 su 5di ÐarkbloøM, 10 mesi faEasy to use, works well, 10/10. Though it'd be nice if it didn't save a new script when the editor pop-up is opened but no code is actually written.
- Valutata 5 su 5di GRACE, un anno fa
- Valutata 5 su 5di Entite, un anno fa
- Valutata 5 su 5di Lucy the Pirate, un anno faThank you for makin' this plugin! I was able to use it to write a script to block players on a comment board for a website that didn't have a block function built in!
- Valutata 3 su 5di RickinMaine, un anno fa
- Valutata 1 su 5di Utente Firefox 18047774, un anno fa
- Valutata 1 su 5di hdircksen, un anno fa
- Valutata 5 su 5di Adem, 2 anni fa
- Valutata 5 su 5di Utente Firefox 17716521, 2 anni faVery good. It works well. The only little bug I noticed is that the extension doesn't work with local files.
- Valutata 5 su 5di Utente Firefox 14536207, 2 anni fa
- Valutata 5 su 5di Mass59, 3 anni fa
- Valutata 5 su 5di Вартигонт, 3 anni fa
- Valutata 2 su 5di paolo, 3 anni fa
- Valutata 4 su 5di JustWantToLeaveAnAddonReview, 3 anni faSuper useful and simple. Would be nice to have a central place to manage all the scripts that are added. Some of mine set window.location, making them hard to re-edit without temporarily disabling the addon.
Replica dello sviluppatore
pubblicato il 3 anni fai have added a really basic thing for this where you can get all the scripts as a json block from the options page (accessible by clicking the "JS" in the bottom right of the popup) and if you paste it back in, you can save over your scripts.