dotNET Weekly
Contribute an awesome article/resource to dotNET Weekly
Cos'è dotNET Weekly?
dotNET Weekly è un'estensione di Chrome sviluppata da https://www.dotnetweekly.com, e la sua funzione principale è "Contribute an awesome article/resource to dotNET Weekly".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione dotNET Weekly
Scarica i file di estensione dotNET Weekly 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
Contribute articles and resources quickly to dotNET Weekly. We review all of the contributions each week and the most popular ones are published in our newsletter!
Informazioni di Base sull'Estensione
Nome | dotNET Weekly |
ID | eoifagioffdmkepikidhcceihdgnliib |
URL Ufficiale | https://chromewebstore.google.com/detail/dotnet-weekly/eoifagioffdmkepikidhcceihdgnliib |
Descrizione | Contribute an awesome article/resource to dotNET Weekly |
Dimensione del File | 9.41 KB |
Conteggio Installazioni | 35 |
Versione Corrente | 1.3 |
Ultimo Aggiornamento | 2018-02-19 |
Data di Pubblicazione | 2018-02-19 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | https://www.dotnetweekly.com |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.dotnetweekly.com |
URL della Pagina di Aiuto | https://www.dotnetweekly.com/ |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "dotNET Weekly", "description": "Contribute an awesome article\/resource to dotNET Weekly", "version": "1.3", "browser_action": { "default_icon": "icon.png", "default_popup": "contribute.html" }, "permissions": [ "https:\/\/www.google.com\/*", "https:\/\/www.gstatic.com\/*", "tabs", "storage", "https:\/\/www.dotnetweekly.com\/" ], "content_security_policy": "default-src 'sha256-\/2oNCpC\/HWYhzwSSBY0+TeGRlA51DjF6HzAoWY9Nf7E=';connect-src http:\/\/localhost http:\/\/localhost:3000 https:\/\/dnw-api.azurewebsites.net; script-src 'sha256-\/2oNCpC\/HWYhzwSSBY0+TeGRlA51DjF6HzAoWY9Nf7E=' https:\/\/www.google.com https:\/\/www.gstatic.com http:\/\/localhost:3000 https:\/\/dnw-api.azurewebsites.net; object-src 'self'; frame-src https:\/\/www.google.com\/recaptcha\/; style-src 'self' 'unsafe-inline' 'unsafe-eval'", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contribute.js" ] } ], "web_accessible_resources": [ "**.html", "**.js" ] } |