Tipila
Use Tipila to save code snippets, how to's & programming tips as you come across them. So you can find them easily when needed.
Tipila là gì?
Tipila là một tiện ích mở rộng Chrome được phát triển bởi http://tipila.com, và tính năng chính của nó là "Use Tipila to save code snippets, how to's & programming tips as you come across them. So you can find them easily when needed.".
Ả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 Tipila
Tải xuống các tệp mở rộng Tipila 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
What is Tipila ? ====================================== Tipila is a place for programmers to manage & share their knowledge in the form of Tips. This extension allows you to post programming tips to Tipila as you come across them. Without leaving the current page. So you can easily find them when needed. Just highlight the text you want to post as a Tip and click the Tipila button. That's it !!! What is a Tip ? ====================================== A Tip is an exact, to the point, instruction of how to do a programming task. No-more no-less. A Tip can be a code snippet, trick, hack or a how-to, related to programming Why Tipila was created ? ====================================== Tipila was created to solve an annoying problem that we, the programmers face every day. When we face a programming problem, we spend hours on end googling and trying out all the solutions found. After trying so many methods we finally find the solution only to forget about it when faced with a similar problem sometime later. Then we start googling all over again and waste time to find the solution again But with Tipila, you can post the solutions you find, to Tipila and easily find them again when needed But I can bookmark the solutions I find ? ====================================== Yes, but most of the time the solutions are found in forums, blog posts or Q&A sites. In a blog you need to read about author trying the method A and then method B and so on until he finds the solution that acutallly works. On a forum or a Q & A aite you need to go through all the posts and comments to find the solution that actually work. So it's way easier to post the exact solution to Tipila as a tip and find it again when needed rather than reading a lengthy page again Can't I use my own blog to post tips ? ====================================== Yes, but only if the solution is long enough to write a blog post about it. Most of the time the actual solution is a few lines of code or a simple configuration change. So it's easier to post it as a tip to Tipila. Also Tipila has rich search functionalities for you to search tips easily and efficiently. OK, Do I have to pay to use Tipila ? ====================================== No and Never...! Tipila is totally free and it always will be. Can I use other people's tips ? ====================================== Yes you can. Tipila is all about sharing knowledge. If you find an interesting tip, you can add it to your "MyTips" or vote up the tip to increase its popularity Can I post my blog posts to Tipila as tips ? ====================================== Yes, you can post a link to your blog post with the tip as well...! But make sure to post the essence of your blog post as the tip and put the link to the blog as a "more info" link. How can a company or a dev team benifit from Tipila ? ====================================== If you've got a group of devs working on a project, you can tag all the tips related to the project with the project name and group them together. So that all of your team members can easily find them That's not all, when a member leaves the company or the project, you no longer lose all of his knowledge as Tipila has the tips he posted.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ebbbngjeimkpinnkgkjgikidakfhjpjl |
URL Chính Thức | https://chrome.google.com/webstore/detail/tipila/ebbbngjeimkpinnkgkjgikidakfhjpjl |
Mô tả | Use Tipila to save code snippets, how to's & programming tips as you come across them. So you can find them easily when needed. |
Kích Thước Tệp | 300 KB |
Số Lần Cài Đặt | 128 |
Phiên Bản Hiện Tại | 1.0.0.1010 |
Cập Nhật Lần Cuối | 2013-12-17 |
Ngày Phát Hành | 2013-12-17 |
Đánh Giá | 4.33/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | http://tipila.com |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://tipila.com |
URL Trang Trợ Giúp | http://tipila.com/about |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tipila", "version": "1.0.0.1010", "manifest_version": 2, "description": "Use Tipila to save code snippets, how to's & programming tips as you come across them. So you can find them easily when needed.", "background": { "page": "background.html" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "permissions": [ "*:\/\/*\/*", "webRequest", "tabs", "webNavigation" ], "web_accessible_resources": [ "styles\/jquery.toastmessage.css", "result.html" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ "styles\/jquery.toastmessage.css" ], "js": [ "scripts\/contentscript.js", "scripts\/jquery-1.7.2.min.js", "scripts\/jquery.toastmessage.js" ], "all_frames": false } ] } |