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 |
官方網址 | 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=*" ] } |