dotNET Weekly
Contribute an awesome article/resource to dotNET Weekly
Wat is dotNET Weekly?
dotNET Weekly is een Chrome-extensie ontwikkeld door https://www.dotnetweekly.com, en de belangrijkste functie is "Contribute an awesome article/resource to dotNET Weekly".
Extensie Screenshots
Download het CRX-bestand van de extensie dotNET Weekly
Download dotNET Weekly-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | dotNET Weekly |
ID | eoifagioffdmkepikidhcceihdgnliib |
Officiële URL | https://chromewebstore.google.com/detail/dotnet-weekly/eoifagioffdmkepikidhcceihdgnliib |
Beschrijving | Contribute an awesome article/resource to dotNET Weekly |
Bestandsgrootte | 9.41 KB |
Aantal Installaties | 35 |
Huidige Versie | 1.3 |
Laatst Bijgewerkt | 2018-02-19 |
Publicatiedatum | 2018-02-19 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | https://www.dotnetweekly.com |
Betalingswijze | free |
Extensiewebsite | https://www.dotnetweekly.com |
Help Pagina-URL | https://www.dotnetweekly.com/ |
Ondersteunde Talen | 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" ] } |