dotNET Weekly
Contribute an awesome article/resource to dotNET Weekly
dotNET Weeklyとは何ですか?
dotNET Weeklyはhttps://www.dotnetweekly.comによって開発されたChromeの拡張機能で、その主な機能は「Contribute an awesome article/resource to dotNET Weekly」です。
拡張機能のスクリーンショット
dotNET Weekly拡張機能のCRXファイルをダウンロード
dotNET Weekly拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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! 拡張機能の基本情報
| 名前 | |
| ID | eoifagioffdmkepikidhcceihdgnliib |
| 公式URL | https://chromewebstore.google.com/detail/dotnet-weekly/eoifagioffdmkepikidhcceihdgnliib |
| 説明 | Contribute an awesome article/resource to dotNET Weekly |
| ファイルサイズ | 9.41 KB |
| インストール数 | 35 |
| 現在のバージョン | 1.3 |
| 最終更新日 | 2018-02-19 |
| 公開日 | 2018-02-19 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | https://www.dotnetweekly.com |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://www.dotnetweekly.com |
| ヘルプページのURL | https://www.dotnetweekly.com/ |
| 対応言語 | 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"
]
} | |