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文件
下载Tweet This Page扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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=*" ] } |