Tweet This Page
Browser Extension that tweets the current page URL and title.
Tweet This Page란 무엇입니까?
Tweet This Page은(는) shuymn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browser Extension that tweets the current page URL and title."입니다.
확장 프로그램 스크린샷
Tweet This Page 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The browser extension that allows to tweet the current page URL and title. Feature ・Add "Tweet This Page" context menus.
확장 프로그램 기본 정보
이름 | Tweet This Page |
ID | ebddcjemiggiaedelggijfknajbchfah |
공식 URL | https://chromewebstore.google.com/detail/tweet-this-page/ebddcjemiggiaedelggijfknajbchfah |
설명 | Browser Extension that tweets the current page URL and title. |
파일 크기 | 33.58 KB |
설치 횟수 | 393 |
현재 버전 | 1.1.1 |
최근 업데이트 | 2022-04-08 |
출시 날짜 | 2020-06-01 |
평점 | 4.50/5 총 2 개의 평점 |
개발자 | shuymn |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/shuymn/tweet-this-page |
도움말 페이지 URL | https://github.com/shuymn/tweet-this-page/issues |
지원되는 언어 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "1.1.1", "default_locale": "en", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png", "256": "images\/icon-256.png" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/intent\/tweet?url=*" ], "js": [ "scripts\/content.js" ] } ], "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html" }, "permissions": [ "contextMenus", "webNavigation", "https:\/\/twitter.com\/intent\/tweet?url=*" ] } |