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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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!
확장 프로그램 기본 정보
이름 | dotNET Weekly |
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" ] } |