Skip to content
This repository has been archived by the owner on Jan 19, 2018. It is now read-only.

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
leocaseiro committed Oct 6, 2016
0 parents commit 6ed0304
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Add to delicious Chrome Extension

A simple extension to save links into Delicious.




> The original code for this extension is from [del.icio.us/tools](https://del.icio.us/tools).
3 changes: 3 additions & 0 deletions background.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
chrome.browserAction.onClicked.addListener(function(tab) {
chrome.tabs.executeScript(tab.id, {file: "bookmarklet.js"})
});
1 change: 1 addition & 0 deletions bookmarklet.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added icon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icon-16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icon-48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"background": {"scripts": ["background.js"]},
"browser_action": {
"default_icon": "icon-128.png",
"default_title": "Add to Delicious"
},
"name": "Add to Delicious",
"description": "Add link to Delicious",
"homepage_url": "https://github.com/leocaseiro/AddToDelicious",
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png" },
"permissions": [
"tabs",
"http://*/*",
"https://*/*"
],
"version": "1.0.0",
"manifest_version": 2
}

0 comments on commit 6ed0304

Please sign in to comment.