Tweet Better
Enables single click 'Quote' and 'Email' functionality on Twitter.com.
Tweet Better란 무엇입니까?
Tweet Better은(는) http://pernalin.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enables single click 'Quote' and 'Email' functionality on Twitter.com."입니다.
확장 프로그램 스크린샷
Tweet Better 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Do you use Twitter.com but wish it would allow you to quote a tweet? Have you been frustrated with the Retweet link? This extension enables single click 'Quote' functionality on Twitter.com. Click 'Quote' to add your thoughts and your own flavor to Tweets before sharing. After installing, visit twitter.com and hover on any tweet to view the new functionality! Version 2.0 ------------------- A long overdue update. Fixed Quote functionality for the current Twitter interface. Version 1.1.5 ------------------- Minor defect fix of an error on twitter pages without tweets, such as the profile page, twitter settings etc. Version 1.1 ------------------- A new options page let's you set your quote preference. Pick between old-style Retweets using RT, or the newer format that uses double quotes. To view the options page, install the latest version of this extension, navigate to the extensions dashboard (Chrome Browser -> Window Menu -> Extensions), and then click the 'Options' link. Refresh your twitter.com page for the quote options to take effect. Feedback ---------------- I wrote this for myself, but now that it's up and running feel free to leave a comment and let me know how it's working for you. If there's any other useful features to add, I'd be glad to do so in my free time.
확장 프로그램 기본 정보
이름 | |
ID | mmfjadlbhpakkcbihocajdmgenfgoell |
공식 URL | https://chrome.google.com/webstore/detail/tweet-better/mmfjadlbhpakkcbihocajdmgenfgoell |
설명 | Enables single click 'Quote' and 'Email' functionality on Twitter.com. |
파일 크기 | 45.67 KB |
설치 횟수 | 166 |
현재 버전 | 2.0.1 |
최근 업데이트 | 2013-06-25 |
출시 날짜 | 2013-06-25 |
평점 | 2.93/5 총 28 개의 평점 |
개발자 | http://pernalin.com |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://pernalin.com/projects-2/ |
도움말 페이지 URL | http://pernalin.com/projects-2/ |
지원되는 언어 | en |
manifest.json | |
{ "manifest_version": 2, "name": "Tweet Better", "description": "Enables single click 'Quote' and 'Email' functionality on Twitter.com.", "version": "2.0.1", "permissions": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ], "js": [ "jquery-1.8.2.min.js", "main.js", "tweetbetter.js" ], "run_at": "document_end" } ], "options_page": "options.html", "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "browser_action": { "default_icon": "TweetBetter.png" } } |