TagMyCode
Official Chrome extension for TagMyCode, a platform where developers can save their code snippets.
TagMyCodeคืออะไร?
TagMyCode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://tagmycode.com และคุณลักษณะหลักของมันคือ "Official Chrome extension for TagMyCode, a platform where developers can save their code snippets."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TagMyCode
ดาวน์โหลดไฟล์ส่วนขยาย TagMyCode ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is a platform for developers. TagMyCode helps you to save and manage your code snippets and reuse them when necessary. Features: - Store and tag your snippets - Save and organize your code snippets with appropriate tags - Search for public snippets - You can search all public snippet saved by other users - Reuse your snippets - Copy and paste your snippets in your projects and save precious time - Share your snippets - You can collaborate with other users by sharing public or private snippets - Social - You can interact with other developers, you can follow their updates, comment and vote their public snippets
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | cebihjbhblemknhkbmcliipjhggeleph |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/tagmycode/cebihjbhblemknhkbmcliipjhggeleph |
คำอธิบาย | Official Chrome extension for TagMyCode, a platform where developers can save their code snippets. |
ขนาดไฟล์ | 81.14 KB |
จำนวนการติดตั้ง | 237 |
เวอร์ชันปัจจุบัน | 0.4 |
อัปเดตครั้งล่าสุด | 2015-11-18 |
วันที่เผยแพร่ | 2015-11-18 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | http://tagmycode.com |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://tagmycode.com |
URL หน้าช่วยเหลือ | http://tagmycode.com/about/faq |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TagMyCode", "version": "0.4", "description": "Official Chrome extension for TagMyCode, a platform where developers can save their code snippets.", "icons": { "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "options_page": "options.html", "background": { "scripts": [ "js\/jquery.min.js", "client.js", "app.js", "util.js", "background.js" ] }, "content_scripts": [ { "all_frames": false, "css": [], "js": [ "selectText.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "web_accessible_resources": [ "chrome_ex_oauth.html", "redirect.html" ], "browser_action": { "default_title": "TagMyCode", "default_icon": "img\/icon-16-off.png", "default_popup": "popup.html" }, "permissions": [ "contextMenus", "tabs", "http:\/\/*.tagmycode.com\/*", "https:\/\/*.tagmycode.com\/*", "https:\/\/tagmycode.com\/*" ], "content_security_policy": "script-src 'self' https:\/\/api.tagmycode.com https:\/\/tagmycode.com; object-src 'self'" } |