Skip to content

stop-it/firefox-admin-addon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Stop-It Administration Add-on

Simple Mozilla Firefox add-on for managing Stop-It database with blocked URLs.

NOTE: The database self is NOT included - if you don't have one you have to create it at the first place!

NOTE: Because of using latest features of Mozilla Add-on SDK you need to use development version of Mozilla Firefox - tested on 40.0a2.

Database schema

You can create new Stop-It database using SQLite CLI Shell:

$ sqlite3 stop-it.sqlite
SQLite version 3.8.2 2013-12-06 14:53:30
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> CREATE TABLE Urls (Id INTEGER PRIMARY KEY, Url TEXT NOT NULL UNIQUE, Updated TEXT NOT NULL);
sqlite> PRAGMA user_version = 1;
sqlite> .exit

Using add-on

  1. Download add-on and install it into the Mozilla Firefox
  2. Open Firefox's Add-ons Manager and open Stop-It preferences:
  3. Select database file:
  4. After selecting database file should disapper exclamation badge on the add-on's toolbar button and you are ready to use it:

About

Simple add-on for managing Stop-It database with blocked URLs.

Resources

License

Stars

Watchers

Forks

Packages

No packages published