TweetThis
Tweets the current URL
Hvad er TweetThis?
TweetThis er en Chrome-udvidelse udviklet af Jarryd Lee, og dens hovedfunktion er "Tweets the current URL".
Udvidelsesskærmbilleder
Download TweetThis-udvidelses-CRX-fil
Download TweetThis-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | dfeipfeeiojbkadlgokhllookmopmdhi |
Officiel URL | https://chrome.google.com/webstore/detail/tweetthis/dfeipfeeiojbkadlgokhllookmopmdhi |
Beskrivelse | Tweets the current URL |
Filstørrelse | 81.59 KB |
Antal Installationer | 47 |
Nuværende Version | 2.1 |
Senest Opdateret | 2014-02-13 |
Udgivelsesdato | 2014-02-13 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | Jarryd Lee |
Betalingsmetode | free |
Understøttede Sprog | 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 } |