Code Self Study
A browser extension for Code Self Study (codeselfstudy.com)
Code Self Study là gì?
Code Self Study là một tiện ích mở rộng Chrome được phát triển bởi https://codeselfstudy.com, và tính năng chính của nó là "A browser extension for Code Self Study (codeselfstudy.com)".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Code Self Study
Tải xuống các tệp mở rộng Code Self Study dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This extension is for members of Code Self Study, a programming group with in-person meetups in Berkeley, California and online members around the world. You can use this extension to get easy access to our group's resource and submit interesting links to our forum with one click. To share a link to the forum, highlight some text on the page, and click the extension's icon. Then click "Share Current Page" and a forum draft will be created for you. You can edit the draft before publishing it. This extension is Free open-source software. You can read the code and contribute to its development on Github.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Code Self Study |
ID | mejalgpjkfdfpemlljeomjdefolbikch |
URL Chính Thức | https://chromewebstore.google.com/detail/code-self-study/mejalgpjkfdfpemlljeomjdefolbikch |
Mô tả | A browser extension for Code Self Study (codeselfstudy.com) |
Kích Thước Tệp | 372 KB |
Số Lần Cài Đặt | 28 |
Phiên Bản Hiện Tại | 0.8.3 |
Cập Nhật Lần Cuối | 2020-01-08 |
Ngày Phát Hành | 2020-01-04 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | https://codeselfstudy.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://codeselfstudy.com/ |
URL Trang Trợ Giúp | https://github.com/codeselfstudy/codeselfstudy_browser_extension |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Code Self Study", "short_name": "codeselfstudy", "description": "A browser extension for Code Self Study (codeselfstudy.com)", "version": "0.8.3", "icons": { "64": "icons\/icon.png" }, "permissions": [ "*:\/\/*.codeselfstudy.com\/*", "activeTab" ], "background": { "scripts": [ "vendor\/browser-polyfill.js", "background_script.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "vendor\/browser-polyfill.js", "content_script.js" ] } ], "browser_action": { "default_icon": { "64": "icons\/icon.png" }, "default_popup": "browserAction\/index.html", "default_title": "Code Self Study" }, "options_ui": { "page": "options\/index.html" } } |