dotNET Weekly
Contribute an awesome article/resource to dotNET Weekly
Vad är dotNET Weekly?
dotNET Weekly är en Chrome-tillägg utvecklad av https://www.dotnetweekly.com, och dess huvudfunktion är "Contribute an awesome article/resource to dotNET Weekly".
Tilläggsskärmbilder
Ladda ner dotNET Weekly-förlängningens CRX-fil
Ladda ner dotNET Weekly-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | dotNET Weekly |
ID | eoifagioffdmkepikidhcceihdgnliib |
Officiell webbadress | https://chromewebstore.google.com/detail/dotnet-weekly/eoifagioffdmkepikidhcceihdgnliib |
Beskrivning | Contribute an awesome article/resource to dotNET Weekly |
Filstorlek | 9.41 KB |
Antal Installationer | 35 |
Aktuell Version | 1.3 |
Senast Uppdaterad | 2018-02-19 |
Publiceringsdatum | 2018-02-19 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | https://www.dotnetweekly.com |
Betalningssätt | free |
Tilläggswebbplats | https://www.dotnetweekly.com |
Hjälpsida URL | https://www.dotnetweekly.com/ |
Stödda Språk | 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" ] } |