MonkeyScript is a userscript manager. It lets you write, store, and run your own JavaScript on websites you choose. Its single purpose is managing and executing scripts that you author or explicitly import.
None. MonkeyScript:
The extension makes zero network requests. It has no servers, no accounts, no sync service, and no update-checking for scripts. The only exception is action you explicitly take: if one of your own scripts calls GM.openInTab(url), the browser opens that URL in a new tab, exactly as if you had clicked a link.
The following is stored only on your device, in your browser's local extension storage (chrome.storage.local):
GM.getValue / GM.setValue API, namespaced per scriptThis data never leaves your browser. It is removed when you uninstall the extension. You can export it at any time using the Dashboard's Export feature, and delete any script (and its stored values) using the Delete button.
userScripts) — the Chrome API used to run the scripts you write. This is the extension's core function.storage) — used to save your scripts and their settings locally, as described above.<all_urls>) — required so you can target any website with your scripts' @match patterns. MonkeyScript itself does not read, modify, or collect anything from any website; only the scripts you write and enable run on pages, and only on the sites you specify.Userscripts you write or import run with access to the websites they match. MonkeyScript executes them on your behalf but does not inspect, transmit, or receive their data. Review any script before enabling it.
No data is sold to third parties. No data is transferred to third parties (there is no data to transfer). No data is used or transferred for purposes unrelated to the extension's single purpose, for advertising, or to determine creditworthiness or for lending purposes.
MonkeyScript does not collect data from anyone, including children.
If a future version of MonkeyScript ever changes any of the above (for example, by adding an optional sync feature), this policy will be updated before that version is published, and the change will be noted in the extension's changelog.