Tweet This Page
Browser Extension that tweets the current page URL and title.
What is Tweet This Page?
Tweet This Page is a Chrome extension developed by shuymn, and its main feature is "Browser Extension that tweets the current page URL and title.".
Extension Screenshots
Download Tweet This Page Extension CRX File
Download Tweet This Page extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
The browser extension that allows to tweet the current page URL and title. Feature ・Add "Tweet This Page" context menus.
Extension Basic Information
Name | Tweet This Page |
ID | ebddcjemiggiaedelggijfknajbchfah |
Official URL | https://chromewebstore.google.com/detail/tweet-this-page/ebddcjemiggiaedelggijfknajbchfah |
Description | Browser Extension that tweets the current page URL and title. |
File Size | 33.58 KB |
Installation Count | 393 |
Current Version | 1.1.1 |
Last Updated | 2022-04-08 |
Publish Date | 2020-06-01 |
Rating | 4.50/5 Total 2 Ratings |
Developer | shuymn |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/shuymn/tweet-this-page |
Help Page URL | https://github.com/shuymn/tweet-this-page/issues |
Supported Languages | 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=*" ] } |