Tweet This Page
Browser Extension that tweets the current page URL and title.
Qu'est-ce que Tweet This Page ?
Tweet This Page est une extension Chrome développée par shuymn, et sa fonction principale est "Browser Extension that tweets the current page URL and title.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Tweet This Page
Téléchargez les fichiers d'extension Tweet This Page au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
The browser extension that allows to tweet the current page URL and title. Feature ・Add "Tweet This Page" context menus.
Informations de Base sur l'Extension
Nom | Tweet This Page |
ID | ebddcjemiggiaedelggijfknajbchfah |
URL Officiel | https://chromewebstore.google.com/detail/tweet-this-page/ebddcjemiggiaedelggijfknajbchfah |
Description | Browser Extension that tweets the current page URL and title. |
Taille du Fichier | 33.58 KB |
Nombre d'Installations | 393 |
Version Actuelle | 1.1.1 |
Dernière Mise à Jour | 2022-04-08 |
Date de Publication | 2020-06-01 |
Évaluation | 4.50/5 Total 2 Évaluations |
Développeur | shuymn |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/shuymn/tweet-this-page |
URL de la Page d'Aide | https://github.com/shuymn/tweet-this-page/issues |
Langues Prises en Charge | 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=*" ] } |