Tampermonkey BETA
Change the web at will with userscripts
Τι είναι το Tampermonkey BETA;
Το Tampermonkey BETA είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://tampermonkey.net, και η κύρια λειτουργία του είναι "Change the web at will with userscripts".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Tampermonkey BETA
Λήψη αρχείων επέκτασης Tampermonkey BETA σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Enhance your browsing experience with Tampermonkey BETA! 🌐🚀 Important: this is the BETA Version 🌟 of Tampermonkey! You can find the stable version here: 🔗 https://chrome.google.com/extensions/detail/dhdgffkkebhmkfjojejmpbldmpobfkfo Please note: Tampermonkey BETA may contain bugs, so use with caution 😉 ### 🔑 Key Features: ### - Easily manage and edit all your userscripts - Enable and disable your scripts with just 2 clicks - Conveniently backup and restore via zip file or cloud storage (Google Drive, Dropbox, OneDrive, WebDAV) - Compatible with Greasemonkey up to version 3.x and includes experimental 4.0 support ### 🐞 Bugs ### Instead of leaving a negative rating, kindly report bugs here: - http://tampermonkey.net/bug - https://github.com/Tampermonkey/tampermonkey/issues ### 📝 Change Log ### http://tampermonkey.net/changelog.php?ext=gcal ### ❓ FAQ ### http://tampermonkey.net/faq.php ### 🔐 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! 😃
Βασικές Πληροφορίες Επέκτασης
Όνομα | Tampermonkey BETA |
ID | gcalenpjmijncebpfijmoaglllgpjagf |
Επίσημο URL | https://chromewebstore.google.com/detail/tampermonkey-beta/gcalenpjmijncebpfijmoaglllgpjagf |
Περιγραφή | Change the web at will with userscripts |
Μέγεθος Αρχείου | 1.51 MB |
Αριθμός Εγκαταστάσεων | 713,800 |
Τρέχουσα Έκδοση | 5.1.6193 |
Τελευταία Ενημέρωση | 2024-02-05 |
Ημερομηνία Δημοσίευσης | 2020-06-03 |
Αξιολόγηση | 4.76/5 Συνολικά 4476 Αξιολογήσεις |
Προγραμματιστής | https://tampermonkey.net |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | http://tampermonkey.net/ |
Διεύθυνση URL της Σελίδας Βοήθειας | http://tampermonkey.net/faq |
URL της Σελίδας Πολιτικής Απορρήτου | http://tampermonkey.net/privacy.php |
Υποστηριζόμενες Γλώσσες | 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_extNameBeta__", "short_name": "__MSG_extShortNameBeta__", "description": "__MSG_extDescription__", "version": "5.1.6193", "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", " |