Tampermonkey

Change the web at will with userscripts

Co je Tampermonkey?

Tampermonkey je rozšíření Chrome vyvinuté https://tampermonkey.net, a jeho hlavní funkcí je „Change the web at will with userscripts“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Tampermonkey

Stáhněte si soubory rozšíření Tampermonkey ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Enhance your browsing experience with Tampermonkey! 🌐🚀

Tampermonkey is a versatile browser extension with over 🔟 million users that enhances your browsing experience by allowing you to run userscripts on websites.
Userscripts are small programs that modify page layouts, add or remove features, and automate actions to personalize your web experience.

### 🔑 Key Features: ###

🛠️ Efficiently manage and edit your userscripts
⚡ Swiftly activate and deactivate scripts with just two clicks
🔗 Synchronize scripts using Chrome Sync and various cloud storage services (Google Drive, Dropbox, OneDrive, Yandex.Disk, and WebDAV)
💾 Backup and restore options and userscripts through zip files and/or cloud storage
🔄 Automatic script updates for a seamless experience

For a comprehensive overview, check out our frequently asked questions or simply install the extension. 💡

### 🔍 Discover Userscripts: ###

Find a wide array of userscripts at www.userscript.zone. 🌟

### 📌 Useful Links: ###

🐛 Bug Reports: http://tmnk.net/bug
📝 Full Changelog: http://tmnk.net/changelog.php?ext=dhdg
❓ Frequently Asked Questions: http://tmnk.net/faq
🔎 Userscript Search: https://www.userscript.zone

### 🔐 Data Usage & Privacy: ###

Tampermonkey collects anonymous usage information to improve your experience, such as:

📦 Extension version
🌍 Preferred language
🚫 Script installations for blacklist updates
🖥️ Browser and operating system type

Additionally, error reports containing anonymous information are automatically sent when internal errors occur.
You can disable this feature by adjusting the "Anonymous statistics" setting in the extension. ⚙️

Note: In incognito mode, no usage information is collected or sent. 🕵️‍♂️

For specific functions (e.g., blacklist updates), data from the browser's user-agent string may be collected.
You can disable this by adjusting the "Userscript Blacklist Source" and "Show update notification" settings.

### 📍 Location Data: ###

If either the "Userscript Blacklist Source" or "Show update notification" setting is enabled, Tampermonkey sends HTTP requests, which inherently include your IP address.
Server logs only contain truncated IP addresses. If "Anonymous statistics" is enabled, your IP address helps determine your approximate region or country. 🌏

Thank you for using Tampermonkey! 😃                    

Základní Informace o Rozšíření

Název Tampermonkey Tampermonkey
ID dhdgffkkebhmkfjojejmpbldmpobfkfo
Oficiální URL https://chromewebstore.google.com/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo
Popis Change the web at will with userscripts
Velikost souboru 1.5 MB
Počet instalací 12,000,000
Aktuální Verze 5.0.1
Poslední Aktualizace 2024-01-04
Datum Vydání 2020-06-02
Hodnocení 4.73/5 Celkem 71206 Hodnocení
Vývojář https://tampermonkey.net
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.tampermonkey.net/
URL Stránky Nápovědy https://www.tampermonkey.net/faq
URL Stránky Zásad Ochrany Soukromí http://tampermonkey.net/privacy.php
Podporované Jazyky id,de,en,fr,nl,no,vi,tr,da,es,hr,it,hu,pl,pt-BR,pt-PT,sk,cs,el,sr,ru,uk,hi,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self'; object-src 'self';",
    "minimum_chrome_version": "71.0.0.0",
    "offline_enabled": true,
    "content_scripts": [
        {
            "js": [
                "page.js",
                "content.js"
            ],
            "matches": [
                "file:\/\/\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon_grey19.png",
            "38": "images\/icon_grey38.png",
            "16": "images\/icon_grey16.png",
            "24": "images\/icon_grey24.png",
            "32": "images\/icon_grey32.png"
        },
        "default_title": "Tampermonkey",
        "default_popup": "action.html"
    },
    "icons": {
        "32": "images\/icon.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "incognito": "split",
    "name": "__MSG_extName__",
    "short_name": "__MSG_extShortName__",
    "description": "__MSG_extDescription__",
    "version": "5.0.1",
    "default_locale": "en",
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "commands": {
        "toggle-enable": {
            "description": "Toggle enable state"
        },
        "open-dashboard": {
            "description": "Open dashboard"
        },
        "open-dashboard-with-running-scripts": {
            "description": "Open dashboard with the current tab's URL used as filter"
        },
        "open-new-script": {
            "description": "Open new script tab"
        }
    },
    "permissions": [
        "notifications",
        "unlimitedStorage",
        "tabs",
        "idle",
        "webNavigation",
        "webRequest",
        "webRequestBlocking",
        "storage",
        "contextMenus",
        "chrome:\/\/favicon\/",
        "clipboardWrite",
        "cookies",
        "declarativeContent",
        ""
    ],
    "optional_permissions": [
        "downloads"
    ]
}