dotNET Weekly
Contribute an awesome article/resource to dotNET Weekly
Apa itu dotNET Weekly?
dotNET Weekly adalah ekstensi Chrome yang dikembangkan oleh https://www.dotnetweekly.com, dan fitur utamanya adalah "Contribute an awesome article/resource to dotNET Weekly".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi dotNET Weekly
Unduh file ekstensi dotNET Weekly dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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!
Informasi Dasar Ekstensi
Nama | dotNET Weekly |
ID | eoifagioffdmkepikidhcceihdgnliib |
URL Resmi | https://chromewebstore.google.com/detail/dotnet-weekly/eoifagioffdmkepikidhcceihdgnliib |
Deskripsi | Contribute an awesome article/resource to dotNET Weekly |
Ukuran File | 9.41 KB |
Jumlah Instalasi | 35 |
Versi Saat Ini | 1.3 |
Terakhir Diperbarui | 2018-02-19 |
Tanggal Publikasi | 2018-02-19 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | https://www.dotnetweekly.com |
Tipe Pembayaran | free |
Situs Ekstensi | https://www.dotnetweekly.com |
URL Halaman Bantuan | https://www.dotnetweekly.com/ |
Bahasa yang Didukung | 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" ] } |