dotNET Weekly
Contribute an awesome article/resource to dotNET Weekly
Hvad er dotNET Weekly?
dotNET Weekly er en Chrome-udvidelse udviklet af https://www.dotnetweekly.com, og dens hovedfunktion er "Contribute an awesome article/resource to dotNET Weekly".
Udvidelsesskærmbilleder
Download dotNET Weekly-udvidelses-CRX-fil
Download dotNET Weekly-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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!
Grundlæggende oplysninger om udvidelsen
Navn | dotNET Weekly |
ID | eoifagioffdmkepikidhcceihdgnliib |
Officiel URL | https://chromewebstore.google.com/detail/dotnet-weekly/eoifagioffdmkepikidhcceihdgnliib |
Beskrivelse | Contribute an awesome article/resource to dotNET Weekly |
Filstørrelse | 9.41 KB |
Antal Installationer | 35 |
Nuværende Version | 1.3 |
Senest Opdateret | 2018-02-19 |
Udgivelsesdato | 2018-02-19 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | https://www.dotnetweekly.com |
Betalingsmetode | free |
Udvidelseswebsted | https://www.dotnetweekly.com |
Hjælpeside-URL | https://www.dotnetweekly.com/ |
Understøttede Sprog | 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" ] } |