TYPO3 Review

TYPO3 Review simplifies reviewing of TYPO3 patches.

Was ist TYPO3 Review?

TYPO3 Review ist eine Chrome-Erweiterung, die von https://michielroos.com entwickelt wurde, und ihr Hauptmerkmal ist "TYPO3 Review simplifies reviewing of TYPO3 patches.".

Erweiterungsscreenshots

screenshot
screenshot

TYPO3 Review-Erweiterungs-CRX-Datei herunterladen

Laden Sie TYPO3 Review-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        TYPO3 Review simplifies reviewing of TYPO3 patches by providing buttons that will directly cherry-pick any change revision right to your locally running instance of http://review.local.typo3.org.

This works for both https://review.typo3.org/ and https://forger.typo3.org/!

Please visit https://local.typo3.org (the https version) once to accept the snakeoil certificate. If you don't, the forger buttons will not work.

You can install your local review environment by cloning https://github.com/Tuurlijk/TYPO3.Review and doing a simple 'vagrant up'.                    

Grundlegende Informationen zur Erweiterung

Name TYPO3 Review TYPO3 Review
ID omloegomfdeniikpijekbmggdgmkmkck
Offizielle URL https://chromewebstore.google.com/detail/typo3-review/omloegomfdeniikpijekbmggdgmkmkck
Beschreibung TYPO3 Review simplifies reviewing of TYPO3 patches.
Dateigröße 125 KB
Installationsanzahl 45
Aktuelle Version 2.0.3
Letztes Update 2016-07-12
Veröffentlichungsdatum 2016-07-11
Entwickler https://michielroos.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Tuurlijk/TYPO3-Review-helper-for-chrome
Hilfeseite URL https://github.com/Tuurlijk/TYPO3-Review-helper-for-chrome/issues
Unterstützte Sprachen en,nl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "version": "2.0.3",
    "manifest_version": 2,
    "minimum_chrome_version": "22",
    "description": "__MSG_extensionDescription__",
    "homepage_url": "http:\/\/www.donationbasedhosting.org\/",
    "default_locale": "en",
    "permissions": [
        "tabs",
        "webRequest",
        "*:\/\/*.typo3.org\/*"
    ],
    "background": {
        "scripts": [
            "Resources\/JavaScript\/Library.js",
            "Resources\/JavaScript\/Background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "js": [
                "Resources\/JavaScript\/Library.js",
                "Resources\/JavaScript\/Content.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "19": "Resources\/Icons\/ToolbarIcon19.png",
            "38": "Resources\/Icons\/ToolbarIcon38.png"
        },
        "default_title": "TYPO3 Review disabled",
        "default_popup": "Resources\/HTML\/Popup.html"
    },
    "icons": {
        "16": "Resources\/Icons\/Icon16.png",
        "48": "Resources\/Icons\/Icon48.png",
        "128": "Resources\/Icons\/Icon128.png"
    },
    "options_page": "Resources\/HTML\/Options.html",
    "web_accessible_resources": [
        "Resources\/HTML\/Popup.html",
        "Resources\/Images\/throbber.svg"
    ]
}