Tamperwolf

Tampermonkey clone

What is Tamperwolf?

Tamperwolf is a Chrome extension developed by cristi.lupascu, and its main feature is "Tampermonkey clone".

Extension Screenshots

screenshot

Download Tamperwolf Extension CRX File

Download Tamperwolf extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        A simple extension that runs custom scripts on pages based on some simple regex rules.                    

Extension Basic Information

Name Tamperwolf Tamperwolf
ID agdbgmnajalcgckpbfghgkoglkecpfhm
Official URL https://chromewebstore.google.com/detail/tamperwolf/agdbgmnajalcgckpbfghgkoglkecpfhm
Description Tampermonkey clone
File Size 216 KB
Installation Count 154
Current Version 1.0.1
Last Updated 2021-05-26
Publish Date 2017-05-09
Rating 5.00/5 Total 1 Ratings
Developer cristi.lupascu
Email [email protected]
Payment Type free
Extension Website https://github.com/clupasq/tamperwolf
Help Page URL https://github.com/clupasq/tamperwolf/issues
Supported Languages 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": [
        "",
        "storage"
    ]
}