Synchronize Tab Scrolling

This extension provides convenience for users reading original and translated documents across multiple tabs. When the user scrolls…

Τι είναι το Synchronize Tab Scrolling;

Το Synchronize Tab Scrolling είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον lee3830714, και η κύρια λειτουργία του είναι "This extension provides convenience for users reading original and translated documents across multiple tabs. When the user scrolls…".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Synchronize Tab Scrolling

Λήψη αρχείων επέκτασης Synchronize Tab Scrolling σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension provides convenience for users reading original and translated documents across multiple tabs.
When the user scrolls in one tab, the linked tab automatically scrolls to the same position, allowing for easy comparison and reading of the original and translated texts.
This feature is particularly useful when translating documents or referencing multilingual documents simultaneously.

_________________________________________________________
HOW IT WORKS

To get started, simply follow these steps:

1. Open multiple tabs in different windows.
2. Click on the extension icon.
3. Select two or more tabs you want to synchronize scrolling.

Then, simply click the 'Start sync' button and scroll through the tabs. To stop synchronizing tabs, just click the extension icon once more and select the 'Stop sync' button or close the synchronized tabs.

_________________________________________________________
PRIVACY POLICY

The Synchronize Tab Scrolling extension has no ads, no analytics, no trackers, and no use of cookies. It is also an open-source project(https://github.com/jaem1n207/synchronize-tab-scrolling).

_________________________________________________________
NOTE

Please note that tab scrolling cannot be synchronized for tabs with certain URLs. Tabs starting with the following URLs are excluded:
- chrome
- data
- devtools
- view-source
- https://chrome.google.com/webstore
- https://accounts.google.com
- https://analytics.google.com/analytics
- https://search.google.com/search-console
- https://chromewebstore.google.com

This is to prevent the extension from interacting with unintended pages, such as certain services.

_________________________________________________________
SUPPORT

I use it myself to improve usability and catch bugs, but if you encounter any issues, please report it below:
- Email: [email protected]
- GitHub: http://tinyurl.com/3j2wwe6s                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Synchronize Tab Scrolling Synchronize Tab Scrolling
ID phceoocamipnafpgnchbfhkdlbleeafc
Επίσημο URL https://chromewebstore.google.com/detail/synchronize-tab-scrolling/phceoocamipnafpgnchbfhkdlbleeafc
Περιγραφή This extension provides convenience for users reading original and translated documents across multiple tabs. When the user scrolls…
Μέγεθος Αρχείου 327 KB
Αριθμός Εγκαταστάσεων 89
Τρέχουσα Έκδοση 2.3.0
Τελευταία Ενημέρωση 2024-02-29
Ημερομηνία Δημοσίευσης 2023-07-30
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής lee3830714
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/jaem1n207/synchronize-tab-scrolling
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/jaem1n207/synchronize-tab-scrolling/issues
Υποστηριζόμενες Γλώσσες en,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "default_locale": "en",
    "version": "2.3.0",
    "permissions": [
        "scripting",
        "storage",
        "tabs"
    ],
    "icons": {
        "16": "icons\/logo-16.png",
        "48": "icons\/logo-48.png",
        "128": "icons\/logo-128.png",
        "256": "icons\/logo-256.png",
        "512": "icons\/logo-512.png"
    },
    "background": {
        "service_worker": "background-script.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "minimum_chrome_version": "88",
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "action": {
        "default_title": "__MSG_extName__",
        "default_icon": {
            "16": "icons\/logo-16.png",
            "32": "icons\/logo-32.png",
            "48": "icons\/logo-48.png",
            "72": "icons\/logo-72.png",
            "128": "icons\/logo-128.png"
        },
        "default_popup": "index.html"
    }
}