TweetThis
Tweets the current URL
Qu'est-ce que TweetThis ?
TweetThis est une extension Chrome développée par Jarryd Lee, et sa fonction principale est "Tweets the current URL".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension TweetThis
Téléchargez les fichiers d'extension TweetThis 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
Allows for an easy one click method to tweet your current URL by clicking the tweet this button up the top right of the browser.
Informations de Base sur l'Extension
Nom | |
ID | dfeipfeeiojbkadlgokhllookmopmdhi |
URL Officiel | https://chrome.google.com/webstore/detail/tweetthis/dfeipfeeiojbkadlgokhllookmopmdhi |
Description | Tweets the current URL |
Taille du Fichier | 81.59 KB |
Nombre d'Installations | 47 |
Version Actuelle | 2.1 |
Dernière Mise à Jour | 2014-02-13 |
Date de Publication | 2014-02-13 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Jarryd Lee |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TweetThis", "short_name": "TweetThis", "author": "Jarryd Lee", "icons": { "128": "icon128.png", "16": "icon16.png", "48": "icon48.png" }, "description": "Tweets the current URL", "version": "2.1", "background": { "scripts": [ "jquery.js", "background.js" ], "persistent": false }, "content_scripts": [ { "js": [ "jquery.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "browser_action": { "default_icon": "icon16.png", "permissions": [ "tabs", "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*", "http:\/\/api.bit.ly\/*" ] }, "web_accessible_resources": [ "jquery-1.10.1.min.map" ], "manifest_version": 2 } |