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 |
Eメール | [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=*" ] } |