Tamperwolf
Tampermonkey clone
Wat is Tamperwolf?
Tamperwolf is een Chrome-extensie ontwikkeld door cristi.lupascu, en de belangrijkste functie is "Tampermonkey clone".
Extensie Screenshots
Download het CRX-bestand van de extensie Tamperwolf
Download Tamperwolf-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
A simple extension that runs custom scripts on pages based on some simple regex rules. Basisinformatie over de Extensie
| Naam | |
| ID | agdbgmnajalcgckpbfghgkoglkecpfhm |
| Officiële URL | https://chromewebstore.google.com/detail/tamperwolf/agdbgmnajalcgckpbfghgkoglkecpfhm |
| Beschrijving | Tampermonkey clone |
| Bestandsgrootte | 216 KB |
| Aantal Installaties | 154 |
| Huidige Versie | 1.0.1 |
| Laatst Bijgewerkt | 2021-05-26 |
| Publicatiedatum | 2017-05-09 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | cristi.lupascu |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/clupasq/tamperwolf |
| Help Pagina-URL | https://github.com/clupasq/tamperwolf/issues |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Tamperwolf",
"short_name": "Tamperwolf",
"version": "1.0.1",
"author": "Cristian Lupa\u0219cu",
"homepage_url": "https:\/\/github.com\/clupasq\/tamperwolf",
"description": "Tampermonkey clone",
"icons": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": [],
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"pageScript.js"
],
"run_at": "document_end"
}
],
"permissions": [
" | |