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?
Tipila是由http://tipila.com开发的Chrome扩展程序,该扩展的主要功能是“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扩展crx文件
下载Tipila扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | ebbbngjeimkpinnkgkjgikidakfhjpjl |
官方URL | https://chrome.google.com/webstore/detail/tipila/ebbbngjeimkpinnkgkjgikidakfhjpjl |
简介 | Use Tipila to save code snippets, how to's & programming tips as you come across them. So you can find them easily when needed. |
文件大小 | 300 KB |
安装次数 | 128 |
当前版本 | 1.0.0.1010 |
更新时间 | 2013-12-17 |
上架时间 | 2013-12-17 |
评分 | 4.33/5 共6次评分 |
开发者 | http://tipila.com |
付费类型 | free |
扩展官网 | http://tipila.com |
帮助页面URL | http://tipila.com/about |
支持的语言 | 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 } ] } |