Official Snap.as browser extension for quickly uploading photos.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324
  1. chrome.browserAction.onClicked.addListener(function (tab){
  2. chrome.windows.create({
  3. url: "uploader.html",
  4. width: 230,
  5. height: 230,
  6. type: "popup"
  7. }, function(window) {
  8. });
  9. });
  10. chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {
  11. var notifID = 'copied';
  12. if (request.success) {
  13. chrome.notifications.create(notifID, {
  14. 'type': 'basic',
  15. 'title': 'Snap.as',
  16. 'message': 'Copied to clipboard!',
  17. 'iconUrl': 'icon128.png',
  18. });
  19. setTimeout(function() {
  20. chrome.notifications.clear(notifID);
  21. }, 2500);
  22. }
  23. });