dotNET Weekly
Contribute an awesome article/resource to dotNET Weekly
Qu'est-ce que dotNET Weekly ?
dotNET Weekly est une extension Chrome développée par https://www.dotnetweekly.com, et sa fonction principale est "Contribute an awesome article/resource to dotNET Weekly".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension dotNET Weekly
Téléchargez les fichiers d'extension dotNET Weekly au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | dotNET Weekly |
ID | eoifagioffdmkepikidhcceihdgnliib |
URL Officiel | https://chromewebstore.google.com/detail/dotnet-weekly/eoifagioffdmkepikidhcceihdgnliib |
Description | Contribute an awesome article/resource to dotNET Weekly |
Taille du Fichier | 9.41 KB |
Nombre d'Installations | 35 |
Version Actuelle | 1.3 |
Dernière Mise à Jour | 2018-02-19 |
Date de Publication | 2018-02-19 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://www.dotnetweekly.com |
Type de Paiement | free |
Site Web de l'Extension | https://www.dotnetweekly.com |
URL de la Page d'Aide | https://www.dotnetweekly.com/ |
Langues Prises en Charge | 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" ] } |