OME
OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review.
Cos'è OME?
OME è un'estensione di Chrome sviluppata da http://chaopeng.me, e la sua funzione principale è "OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione OME
Scarica i file di estensione OME in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review.
Informazioni di Base sull'Estensione
Nome | ![]() |
ID | ddmghiaepldohkneojcfejekplkakgjg |
URL Ufficiale | https://chrome.google.com/webstore/detail/ome/ddmghiaepldohkneojcfejekplkakgjg |
Descrizione | OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review. |
Dimensione del File | 6.92 KB |
Conteggio Installazioni | 97 |
Versione Corrente | 0.6.0 |
Ultimo Aggiornamento | 2017-05-13 |
Data di Pubblicazione | 2017-05-13 |
Valutazione | 3.00/5 Totale 1 Valutazioni |
Sviluppatore | http://chaopeng.me |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://chromium.googlesource.com/chromium/src.git/+/master/tools/chrome_extensions/open_my_editor/README.md |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "OME", "description": "OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review.", "version": "0.6.0", "permissions": [ "contextMenus", "tabs", "activeTab", "http:\/\/127.0.0.1:8989\/*" ], "icons": { "16": "icon-16.png" }, "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/chromium-review.googlesource.com\/*" ], "js": [ "gr-content.js" ] }, { "matches": [ "https:\/\/cs.chromium.org\/chromium\/src\/*" ], "js": [ "cs-content.js" ] }, { "matches": [ "https:\/\/codereview.chromium.org\/*" ], "js": [ "cr-content.js" ] } ], "manifest_version": 2 } |