This repository has been archived by the owner on Jan 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 6ed0304
Showing
7 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"}) | ||
}); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |