Open TortoiseSVN for Google Chrome™

Extension to open a file directly in TortoiseSVN instead of in the browser.

Τι είναι το Open TortoiseSVN for Google Chrome™;

Το Open TortoiseSVN for Google Chrome™ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://masamitsu-murase.blogspot.com, και η κύρια λειτουργία του είναι "Extension to open a file directly in TortoiseSVN instead of in the browser.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Open TortoiseSVN for Google Chrome™

Λήψη αρχείων επέκτασης Open TortoiseSVN for Google Chrome™ σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        This extension enables you to open a file directly in TortoiseSVN instead of in the browser.
When you click on a link to one of the registered URLs, TortoiseSVN Repository Browser will open.

This extension also displays some contextual menus to open TortoiseSVN Repository Browser, Log Viewer and Blame Viewer when right clicking on a URL.

This extension is a Google Chrome™ version of "Open TortoiseSVN" for Firefox, https://addons.mozilla.org/en-US/firefox/addon/open-tortoisesvn/

If you use Redmine and install Add Subversion Links plugin,  http://www.redmine.org/plugins/add_subversion_links, on the Redmine server, you can open the log of the specific revision easily.

This extension needs installation of TortoiseSVN.
Set the path of TortoiseProc.exe in option page before you use this extension.

You can use this extension under MIT License.

===
Change Log
* 2.3.0, 2.3.1
  Support manifest v3.
* 2.2.0, 2.2.1
  Remove unnecessary permission, tabs and unlimitedStorage.
* 2.1.0, 2.1.1
  Supports URL with parameters, such as "http://example.com/path?p=123".
* 2.0.2
  Uses SVG images as help tips.
* 2.0.1
  Uses static images as help tips.
* 2.0.0
  Supports Event Page to reduce memory consumption.
* 1.0.1
  Show warning in badge.
* 1.0.0
  Use Native Messaging.
* 0.0.6
  Change manifest version.
* 0.0.5
  Support pages loaded in iframe.
* 0.0.4
  Add action for each extension.
* 0.0.2
  Add default TortoiseSVN action.
* 0.0.1
  Initial Release                    

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

Όνομα Open TortoiseSVN for Google Chrome™ Open TortoiseSVN for Google Chrome™
ID mhhincgnohhopnakokkcoifmnahapihn
Επίσημο URL https://chromewebstore.google.com/detail/open-tortoisesvn-for-goog/mhhincgnohhopnakokkcoifmnahapihn
Περιγραφή Extension to open a file directly in TortoiseSVN instead of in the browser.
Μέγεθος Αρχείου 76.57 KB
Αριθμός Εγκαταστάσεων 2,501
Τρέχουσα Έκδοση 2.3.1
Τελευταία Ενημέρωση 2022-12-20
Ημερομηνία Δημοσίευσης 2019-08-17
Αξιολόγηση 3.73/5 Συνολικά 11 Αξιολογήσεις
Προγραμματιστής https://masamitsu-murase.blogspot.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/masamitsu-murase/open_tortoise_svn_for_google_chrome
Υποστηριζόμενες Γλώσσες en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Open TortoiseSVN for Google Chrome\u2122",
    "version": "2.3.1",
    "description": "Extension to open a file directly in TortoiseSVN instead of in the browser.",
    "icons": {
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "service_worker": "js\/background\/service_worker.js"
    },
    "action": {
        "default_icon": "icons\/icon32.png",
        "default_title": "Open TortoiseSVN"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "css": [
                "css\/page.css"
            ],
            "js": [
                "js\/common\/misc.js",
                "js\/common\/action_matcher.js",
                "js\/common\/misc_settings.js",
                "js\/common\/error.js",
                "js\/common\/svn_url.js",
                "js\/content_script\/a_tag_parser.js",
                "js\/content_script\/icon.js",
                "js\/content_script\/icon_decorator.js",
                "js\/content_script\/message_sender.js",
                "js\/content_script\/proxy.js",
                "js\/content_script\/content_script.js"
            ]
        }
    ],
    "options_ui": {
        "page": "html\/options.html",
        "open_in_tab": true
    },
    "permissions": [
        "contextMenus",
        "nativeMessaging",
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/en\/tooltip_repobrowser.svg",
                "images\/en\/tooltip_blame.svg",
                "images\/en\/tooltip_log.svg",
                "images\/ja\/tooltip_repobrowser.svg",
                "images\/ja\/tooltip_blame.svg",
                "images\/ja\/tooltip_log.svg"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ]
        }
    ]
}